UNPKG

testdouble

Version:

A minimal test double library for TDD with JavaScript

82 lines (80 loc) 2.07 kB
import * as assign from 'lodash/assign' import * as capitalize from 'lodash/capitalize' import * as clone from 'lodash/clone' import * as cloneDeep from 'lodash/cloneDeep' import * as cloneDeepWith from 'lodash/cloneDeepWith' import * as compact from 'lodash/compact' import * as defer from 'lodash/defer' import * as delay from 'lodash/delay' import * as each from 'lodash/each' import * as every from 'lodash/every' import * as extend from 'lodash/extend' import * as filter from 'lodash/filter' import * as find from 'lodash/find' import * as findLast from 'lodash/findLast' import * as get from 'lodash/get' import * as groupBy from 'lodash/groupBy' import * as includes from 'lodash/includes' import * as invoke from 'lodash/invoke' import * as isArguments from 'lodash/isArguments' import * as isArray from 'lodash/isArray' import * as isBoolean from 'lodash/isBoolean' import * as isEmpty from 'lodash/isEmpty' import * as isEqual from 'lodash/isEqual' import * as isEqualWith from 'lodash/isEqualWith' import * as isFunction from 'lodash/isFunction' import * as isNumber from 'lodash/isNumber' import * as isObject from 'lodash/isObject' import * as isObjectLike from 'lodash/isObjectLike' import * as isRegExp from 'lodash/isRegExp' import * as isString from 'lodash/isString' import * as keys from 'lodash/keys' import * as last from 'lodash/last' import * as map from 'lodash/map' import * as reduce from 'lodash/reduce' import * as reject from 'lodash/reject' import * as some from 'lodash/some' import * as tap from 'lodash/tap' import * as toArray from 'lodash/toArray' import * as transform from 'lodash/transform' export default { assign, capitalize, clone, cloneDeep, cloneDeepWith, compact, defer, delay, each, every, extend, filter, find, findLast, get, groupBy, includes, invoke, isArguments, isArray, isBoolean, isEmpty, isEqual, isEqualWith, isFunction, isNumber, isObject, isObjectLike, isRegExp, isString, keys, last, map, reduce, reject, some, tap, toArray, transform }