Socket
Socket
Sign inDemoInstall

argtoob

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argtoob

converts arguments to an object


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Install size
2.61 kB
Created
Weekly downloads
 

Readme

Source

argtoob

Build Status npm

Function to convert a list of arguments to an object. This module is created as an alternative to the request lodash#2004 and of course with @jdalton's permission :-)

Install

npm i argtoob --save

Usage

const targs = require('argtoob')

const toObj = targs('a', 'b', 'c') // returns a function

toObj(1, 2, 3) // returns {a: 1, b: 2, c: 3}

Examples

1. Create a key value pair from an object
const _ = require('lodash')
const targs = require('argtoob')

_.map({a: 1, b: 2, c: 3}, targs('value', 'key'))

/* OUTPUTS
  [
    {key: 'a', value: 1},
    {key: 'b', value: 2},
    {key: 'c', value: 3}
  ]
*/
2. Merge Streams with RxJS
const Rx = require('rx')
const targs = require('argtoob')
const resize = Rx.Observable.fromEvent(window, 'resize')
const scroll = Rx.Observable.fromEvent(window, 'scroll')

Rx.Observable.combineLatest(resize, scroll, targs('resize', 'scroll'))

FAQs

Last updated on 17 Feb 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc