mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-07-01 16:05:48 +08:00
5 lines
151 B
JavaScript
5 lines
151 B
JavaScript
import assertString from './util/assertString';
|
|
export default function toInt(str, radix) {
|
|
assertString(str);
|
|
return parseInt(str, radix || 10);
|
|
} |