Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToUint32.js « 2015 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3660f62099d04f025188c5dd9278e54816e634b6 (plain)
1
2
3
4
5
6
7
8
9
'use strict';

var ToNumber = require('./ToNumber');

// http://www.ecma-international.org/ecma-262/5.1/#sec-9.6

module.exports = function ToUint32(x) {
	return ToNumber(x) >>> 0;
};