選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- // Exports true if environment provides native `Map` implementation,
- // whatever that is.
-
- 'use strict';
-
- module.exports = (function () {
- if (typeof Map === 'undefined') return false;
- return (Object.prototype.toString.call(new Map()) === '[object Map]');
- }());
|