選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

identity.js 118 B

123456
  1. "use strict";
  2. function identity(x) {
  3. return x;
  4. }
  5. exports.identity = identity;
  6. //# sourceMappingURL=identity.js.map