0.1.0 • Published 8 years ago

object-extract v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

object-extract

Extract object key-value pairs as variables to a specified context.

npm install object-extract

Build Status

About

This will assign each property of the specified object as a variable in the specified context.

When assigning, the property key is used for the variable name, and the property value is used for the variable value.

Syntax

objectExtract(objectToExtract, context);

objectToExtract

This is the object that you wish to extract to the specified context.

context

This is the context you wish to extract the object to. If not specified, variables will be assigned to the global scope.

Usage

Pass the object you want to extract, and the context object you want it to get extracted to.

var obj = {
	test: 123
};

objectExtract({
	example: 456
}, obj);

console.log(obj);
/*
{
	test: 123,
	example: 456
}
*/

In case you want to extract the object in the global scope, omit the context parameter.

objectExtract({
	example: 456
});

console.log(example);
/*
456
*/

License

MIT