1.1.0 • Published 7 years ago

max-argument-size v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

max-argument-size Build Status

Get maximum argument size

Install

$ npm install --save max-argument-size

Usage

const maxArgumentSize = require('max-argument-size');

maxArgumentSize().then(max => {
	console.log(max);
	//=> 262144
});

API

maxArgumentSize()

Returns a Promise for a number with the maximum argument size.

maxArgumentSize.sync()

Returns a number with the maximum argument size.

License

MIT © Kevin Martensson