mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 06:19:29 +08:00
9 lines
175 B
Text
9 lines
175 B
Text
'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;
|
|
};
|