sam522's picture
node
d4b85c0
raw
history blame contribute delete
211 Bytes
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true,
});
exports.identityFunc = identityFunc;
/**
* Returns the first argument it receives.
*/
function identityFunc(x) {
return x;
}