New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pull-freezed

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-freezed

though pull stream to recursively apply Object.freeze

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

pull-freezed

pull stream that applies Object.freeze() recursively Build Status

install

npm install pull-freezed

example


var pull   = require('pull-stream');
var freeze = require('pull-freezed');

pull(
	pull.values( [ { a: 'immutable' }  ] ),
	freeze,
	pull.map(function (data) {
		data.a = 'something';
		return data;
	}),
	pull.collect(function (err, result) {
		if (!err) console.log(result); // a === 'immutable'
	})
);


Keywords

immutable

FAQs

Package last updated on 26 Nov 2016

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