From 5acfa2bf3a2ef51c78f5423c2202451726bc08f5 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 7 May 2013 23:49:30 -0700 Subject: [PATCH] Remove `_.unzip` from the `underscore` build. Former-commit-id: 6d0accb64f39b08b72e3165c49a8c844a7a99cd3 --- build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.js b/build.js index 7ea8d9468..fba4d6c24 100755 --- a/build.js +++ b/build.js @@ -2812,12 +2812,12 @@ }); }); } - // remove `_.assign`, `_.forIn`, `_.forOwn`, `_.isPlainObject`, and `_.zipObject` assignments + // remove `_.assign`, `_.forIn`, `_.forOwn`, `_.isPlainObject`, `_.unzip`, and `_.zipObject` assignments (function() { var snippet = getMethodAssignments(source), modified = snippet; - _.each(['assign', 'createCallback', 'forIn', 'forOwn', 'isPlainObject', 'zipObject'], function(methodName) { + _.each(['assign', 'createCallback', 'forIn', 'forOwn', 'isPlainObject', 'unzip', 'zipObject'], function(methodName) { if (!useLodashMethod(methodName)) { modified = modified.replace(RegExp('^(?: *//.*\\s*)* *lodash\\.' + methodName + ' *=.+\\n', 'm'), ''); }