7 lines
98 B
JavaScript
7 lines
98 B
JavaScript
|
"use strict";
|
||
|
|
||
|
exports._ = exports._identity = _identity;
|
||
|
function _identity(x) {
|
||
|
return x;
|
||
|
}
|