3 lines
53 B
JavaScript
3 lines
53 B
JavaScript
var identity = x => x;
|
|
assert.equal(identity(1), 1);
|
var identity = x => x;
|
|
assert.equal(identity(1), 1);
|