A suite to track Project Diva score statistics and ratings / D4DJ event data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
projectdivar/server/node_modules/pick-by-alias
sigonasr2 0785506fad Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
..
.eslintrc.json Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
.npmignore Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
index.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
package.json Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
readme.md Update and test twitter endpoints and connections. Prepare java spring server 4 years ago
test.js Update and test twitter endpoints and connections. Prepare java spring server 4 years ago

readme.md

pick-by-alias unstable

Pick object properties by synonyms. Useful to avoid remembering exact option names from user perspective.

npm install pick-by-alias

let pick = require('pick-by-alias')

let result = pick({
  positions: [...],
  color: 'rgba(0, 100, 200, .75)',
  viewBox: null,
  extra: 123
}, {
  positions: 'positions points data coordinates',
  color: 'colors color stroke',
  viewport: 'viewport viewBox'
})

pick(object, properties, keepRest=false)

Return an object with properties picked by the list or dict with aliases. Aliases are matched in priority order, ie. first matching name is picked. Each alias can be an array or a comma/space-separated string.

// pick by dict
let {a, b} = pick(src, {a: ['a', 'b', 'c'], b: 'd e f'})

// pick by list
let {c, d, e} = pick(src, ['c', 'd', 'e'])

// pick by string
let {f, g} = pick(src, 'f g')

keepRest defines if not listed object properties should be transfered to resulting object or discarded.

  • defined − get first non-undefined out of a list of values
  • update-diff − update object state by mapping diff.

License

(c) 2017 Dima Yv. MIT License