@noloco/google-spreadsheet
Version:
Google Sheets API -- simple interface to read/write data and manage sheets
35 lines (31 loc) • 1.67 kB
text/typescript
/* eslint-disable import/extensions */
// re-export just what we need from lodash
// we do this so we can use a single import, but hopefully
// it helps keep bundle sizes down in front-end projects using this lib
export { default as compact } from 'lodash/compact.js';
export { default as each } from 'lodash/each.js';
export { default as filter } from 'lodash/filter.js';
export { default as find } from 'lodash/find.js';
export { default as flatten } from 'lodash/flatten.js';
export { default as get } from 'lodash/get.js';
export { default as groupBy } from 'lodash/groupBy.js';
export { default as isArray } from 'lodash/isArray.js';
export { default as isBoolean } from 'lodash/isBoolean.js';
export { default as isEqual } from 'lodash/isEqual.js';
export { default as isFinite } from 'lodash/isFinite.js';
export { default as isInteger } from 'lodash/isInteger.js';
export { default as isNil } from 'lodash/isNil.js';
export { default as isNumber } from 'lodash/isNumber.js';
export { default as isObject } from 'lodash/isObject.js';
export { default as isString } from 'lodash/isString.js';
export { default as keyBy } from 'lodash/keyBy.js';
export { default as keys } from 'lodash/keys.js';
export { default as map } from 'lodash/map.js';
export { default as omit } from 'lodash/omit.js';
export { default as pickBy } from 'lodash/pickBy.js';
export { default as set } from 'lodash/set.js';
export { default as some } from 'lodash/some.js';
export { default as sortBy } from 'lodash/sortBy.js';
export { default as times } from 'lodash/times.js';
export { default as unset } from 'lodash/unset.js';
export { default as values } from 'lodash/values.js';