项目原始demo,不改动
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 

10 行
263 B

  1. // Exports true if environment provides native `Map` implementation,
  2. // whatever that is.
  3. 'use strict';
  4. module.exports = (function () {
  5. if (typeof Map === 'undefined') return false;
  6. return (Object.prototype.toString.call(new Map()) === '[object Map]');
  7. }());