1.1.0 • Published 6 years ago

linkify-object v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

linkifyObject

Converts object props into a link

Short and quick module that converts object properties { a: b, c: d } into a link &a=b&c=d and offers filter functionality. Was made for Express request.queue object. Works both in Node and web browsers (some of them).

Installation

npm install linkify-object

API

linkifyObject(object, filter)

object

Type: Object

filter

Type: String | Array | Function
Default: true
Helps to filter out props. Could be a string, a string[] or a function.

Usage

const linkify = require('linkify-object');

let obj = { a: 1, b: 2, c: 3, d: 4 };

linkify(obj, 'a');
// => 'b=2&c=3&d=4'

linkify(obj, ['b', 'c']);
// => 'a=1&d=4'

linkify(obj, item => /^(a|b|d)/.test(item));
// => 'c=3'

Changelog

v1.1.0 (2018-05-31):

  • now it can stringify nested objects
  • more advanced filter
1.1.0

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago