All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
'use strict';
|
|
|
|
var ToNumber = require('./ToNumber');
|
|
|
|
// http://262.ecma-international.org/5.1/#sec-9.5
|
|
|
|
module.exports = function ToInt32(x) {
|
|
return ToNumber(x) >> 0;
|
|
};
|