mirror of
https://github.com/liriliri/eruda.git
synced 2026-03-24 09:48:37 +08:00
9 lines
118 B
JavaScript
9 lines
118 B
JavaScript
/* Turn string like '0px' to number.
|
|
*/
|
|
|
|
_('toNum')
|
|
|
|
function exports(str) {
|
|
return toNum(str.replace('px', ''))
|
|
}
|