slim down the lodash dependencies

This commit is contained in:
2016-05-04 13:28:07 -07:00
parent 902f1aeb60
commit 4318bd672f
3 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import indexTimestamp from './helpers/index_timestamp';
import logger from './helpers/logger';
import Job from './job.js';
import Worker from './worker.js';
import { omit } from 'lodash';
import omit from 'lodash.omit';
const debug = logger('queue');

View File

@@ -1,5 +1,5 @@
import events from 'events';
import { isPlainObject } from 'lodash';
import isPlainObject from 'lodash.isplainobject';
import Puid from 'puid';
import logger from './helpers/logger';
import { jobStatuses } from './helpers/constants';