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