Files
2026-04-13 08:19:53 +08:00

13 lines
252 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function parseInt(string, radix = 0, guard) {
if (guard) {
radix = 0;
}
return Number.parseInt(string, radix);
}
exports.parseInt = parseInt;