1.1.1 • Published 3 years ago
produce-by-path v1.1.1
Produce By Path
Description
Produce By Path is a design pattern, which is used to dynamically produce values by using the path to which it is applied. This package helps us easily create and define producer instances.
Installation
npm install produce-by-pathUsage
import ProduceByPath from "produce-by-path"
// CommonJS usage
// const ProduceByPath = require("produce-by-path")
// define producer instance to our liking :)
const instance = new ProduceByPath({
call: (path, args) => {
return ({
path,
args,
})
},
toPrimitive: (path, hint) => {
return path.join("--")
}
})
// Now we can apply the [[instance]] object with any properties
// combination and call as a function and receive the desired
// result as we defined in the [[call]] handler.
console.log( instance.I.love.you("arg1", "arg2") )
// {
// path: ["I", "love", "you"],
// args: ["arg1", "arg2"]
// }
// We can also apply the [[instance]] object with any properties
// combination and convert as a primitive value and receive
// the desired result as we defined in [[toPrimitive]] handler.
console.log( String(instance.I.love.you) )
// I--love--you
console.log( instance.I.love.you + '')
// I--love--youAPI
new ProduceByPath(handlers)
handlers\ defines which operations will be intercepted and how to redefine intercepted operations. It can have the following fields:call\ definescallhandler, takes the following arguments:toPrimitive\ definestoPrimitivehandler, takes the following arguments:path\<String > Array of string, which contains a sequence of those properties on which the toPrimitive operation was applied.hint\ can have the following values:"number","string","default"see details: toPrimitive
Contributing
Read our contributing guide to learn about our development process.
Code of Conduct
This project has adopted the Contributor Covenant as its Code of Conduct, and we expect project participants to adhere to it. Please read the full text so that you can understand what actions will and will not be tolerated.