不要怂,就是干,撸起袖子干!

Commit 4e09ed93 by Jan Aagaard Meier

Merge pull request #2476 from diversario/fix/2440-lodash-corruption

Make a copy of lodash before modifying it.
2 parents 342e3f00 04ba78e1
Showing with 1 additions and 1 deletions
...@@ -8,7 +8,7 @@ var util = require("util") ...@@ -8,7 +8,7 @@ var util = require("util")
var Utils = module.exports = { var Utils = module.exports = {
_: (function() { _: (function() {
var _ = lodash var _ = lodash.cloneDeep(lodash)
, _s = _string , _s = _string
_.mixin(_s.exports()) _.mixin(_s.exports())
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!