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