mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
10 lines
178 B
JavaScript
Generated
10 lines
178 B
JavaScript
Generated
'use strict';
|
|
|
|
var ToNumber = require('./ToNumber');
|
|
|
|
// http://ecma-international.org/ecma-262/5.1/#sec-9.5
|
|
|
|
module.exports = function ToInt32(x) {
|
|
return ToNumber(x) >> 0;
|
|
};
|