aswi2020vldc-gitlab/templetes/node_modules/es-abstract/5/ToInt32.js @ 56f6c6df
1 |
'use strict'; |
---|---|
2 |
|
3 |
var ToNumber = require('./ToNumber'); |
4 |
|
5 |
// http://www.ecma-international.org/ecma-262/5.1/#sec-9.5
|
6 |
|
7 |
module.exports = function ToInt32(x) { |
8 |
return ToNumber(x) >> 0; |
9 |
};
|