mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-12-26 13:05:24 +00:00
12 lines
218 B
JavaScript
Generated
12 lines
218 B
JavaScript
Generated
'use strict';
|
|
|
|
var GetIntrinsic = require('../GetIntrinsic');
|
|
|
|
var $abs = GetIntrinsic('%Math.abs%');
|
|
|
|
// http://www.ecma-international.org/ecma-262/5.1/#sec-5.2
|
|
|
|
module.exports = function abs(x) {
|
|
return $abs(x);
|
|
};
|