🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
'use strict';
|
|
|
|
var $abs = require('math-intrinsics/abs');
|
|
|
|
// https://262.ecma-international.org/5.1/#sec-5.2
|
|
|
|
module.exports = function abs(x) {
|
|
return $abs(x);
|
|
};
|