Socket
Socket
Sign inDemoInstall

@exodus/basic-utils

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/basic-utils

Basic lightweight lib with common utility classes and methods.


Version published
Weekly downloads
10K
decreased by-24.22%
Maintainers
1
Weekly downloads
 
Created
Source

Exodus Basic Utils

[![npm][npm-image]][npm-url]] [npm-image]: https://img.shields.io/npm/v/@exodus/basic-utils.svg?style=flat-square [npm-url]: https://www.npmjs.com/package/@exodus/basic-utils

Install

yarn add @exodus/basic-utils

Usage

SynchronizedTime

import { SynchronizedTime } from '@exodus/basic-utils'

console.log(SynchronizedTime.now())

cleanInput

import { cleanInput } from '@exodus/basic-utils'

cleanInput('1.2abc@!#') // returns 1.2

flattenToPaths

Flatten an object to an array of [...path, leafValue] arrays.

import { flattenToPaths } from '@exodus/basic-utils'

flattenToPaths({
  harry: {
    wand: 'holly',
  },
  grindie: {
    wand: 'yew',
  },
  voldie: {
    wand: 'yew',
  },
})

// [
//   ['harry', 'wand', 'holly'],
//   ['grindie', 'wand', 'yew'],
//   ['voldie', 'wand', 'yew'],
// ]

Lodash-like utility functions

The following functions work like their lodash counterparts, with some caveats:

  • They're strict with respect to arguments, and don't support multiple options like arrays, strings, etc. For example, pick(users, ['name', 'age']) but NOT pick(users, 'name'). Please see the tests before you use them.
  • Functions that create objects return objects with a null prototype.

Before using a function, check its unit tests to make sure you're using the API correctly.

import {
  pick,
  pickBy,
  omit,
  mapKeys,
  mapValues,
  keyBy,
  orderBy,
  isNil,
  isObjectLike,
  isPlainObject,
  difference,
  intersection,
  partition,
  set,
} from '@exodus/basic-utils'

async helpers

See ./src/async.js and ./src/p-debounce.js for more details.

  • mapValuesAsync, filterAsync, partitionAsync are the async counterparts of mapValues, filter, partition respectively.
  • pDebounce: p-debounce, copied from the original temporarily to avoid having to ship this as ESM.

Prototype pollution safety

FAQs

Package last updated on 09 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc