Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fields-transformer

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fields-transformer

transforms fields

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

transformer

Typically transforms key value pairs into some other key value pairs. It is intended to work with the results from multipart handlers like formidable or multer. Not the transformer from the transformer movie. See documentation below.

Requirement

  • Node
  • NPM

Installation

Use the package manager npm to install field-transformer.

npm install field-transformer

Usage

const transformer = require('jwt-linker');
make

Use the make method for transforming an object with keys with values of type array of objects

transformer.make({
  bread: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
  butter: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
  ginger: [{path: 'a'}, {path: 'b'}, {path: '...n'}]
});

// Typically, used with transformer.attach
makeSingle

Use to transform an array of paths into an array of filePaths like so

const {filePaths} = transformer.makeSingle({
  files: [{path: 'a'}, {path: 'b'}, {path: '...n'}]}
);
console.log(filePaths); // ['a', 'b', '..n']
objFieldTransformer

Use to transform keys of values of type object with path as values into an array of filePaths like so

const {filePaths} = transformer.objFieldTransformer({
  bread: {path: 'a'},
  butter: {path: 'a'},
  ginger: {path: 'a'},
});
console.log(filePaths); // ['a', 'a', 'a']
objArrayTransformer

Use to transform keys of values of the type array into an array of filePaths like so


const someObject = {
  bread: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
  butter: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
  ginger: [{path: 'a'}, {path: 'b'}, {path: '...n'}]
};

const {filePaths} = transformer.objArrayTransformer(someObject);
console.log(filePaths); // ['a', 'b', '..n', 'a', 'b', '..n', ...]
attach

Use to attach elements of the filePaths to the doc. Receives two arguments doc and fields. Fields is either an array of strings or just a string. Attach picks the values from the filePaths in transformer.make returns a promise, deal as suites you.

const docModified = await transformer.attach({}, ['storyImages', 'otherImages']);
or const docModified = await transformer.attach({}, 'profileImage');

console.log({docModified}); // {docModified: {storyImages: '...', otherImages: '...'}}
or console.log({docModified}); // {docModified: {profileImage: '...'}}

Additions

  • method objArrayTransformer
  • An explainable readme

Support, Issues

Please visit the Github repo. Submissions, issues... are welcome

Keywords

FAQs

Package last updated on 09 Sep 2019

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