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
175 B
JavaScript
9 lines
175 B
JavaScript
'use strict';
|
|
|
|
var ToNumber = require('./ToNumber');
|
|
|
|
// http://262.ecma-international.org/5.1/#sec-9.6
|
|
|
|
module.exports = function ToUint32(x) {
|
|
return ToNumber(x) >>> 0;
|
|
};
|