3 lines
85 B
JavaScript
3 lines
85 B
JavaScript
var identity = (identityParam) => identityParam;
|
|
assert.equal(1234, identity(1234));
|