Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用JSPM将MOUT模块(例如数组 equals)导入文件?
一种选择是从 NPM 安装最新版本:
jspm install npm:mout
并像这样使用它:
import equals from 'mout/array/equals'; console.log(equals([1], [2], function() { console.log(arguments); }));