1

如何为 node.js 项目自定义构建 lodash?我不想在自定义构建中使用任何基于 Opera、IE、firefox 的代码,因为我将始终使用 v8。可能吗?请帮助。

4

4 回答 4

4

lodash 有一个现有的 Node 包:

npm install lodash
于 2013-02-11T08:01:00.413 回答
1
于 2013-07-23T20:04:07.297 回答
0

有一个特定的节点包:lodash-node

于 2015-01-01T16:51:08.230 回答
0

只需安装npm install --save lodash

在需要的地方使用 with

const _ = require('lodash');

const array = [1];
const other = _.concat(array, 2, [3], [[4]]);
于 2020-06-01T18:00:14.373 回答