google-spreadsheet
Version:
Google Sheets API -- simple interface to read/write data and manage sheets
35 lines (32 loc) • 529 B
text/typescript
/* eslint-disable import/no-extraneous-dependencies */
// re-export just what we need from es-toolkit (prev lodash) these will be bundled into the final result
// but this lets us have a single import, which is nicer to use
export {
compact,
each,
filter,
find,
flatten,
get,
groupBy,
isArray,
isBoolean,
isEqual,
isFinite,
isInteger,
isNil,
isNumber,
isObject,
isString,
keyBy,
keys,
map,
omit,
pickBy,
set,
some,
sortBy,
times,
unset,
values,
} from 'es-toolkit/compat';