A small Node.js library for type casting, http/s requests, object cloning, and other math, object, string, image, time and uuid helpers.
- Table of Contents
- Presentation
- Installation
- Technical information
- Usage
- Code of Conduct
- Contributing
- Support
- Security
- License
Many libraries exist in the Node.js sphere providing great helpers like Lodash and Ramda to name a few. This library is not intended to replace them but provide very simple, safe and lighter helpers.
Consistency is the key.
ECMAScript is not always consistent and this library is mostly used to give some foundation we can rely on.
Because even if null, undefined, NaN have a real technical sense, it can lead to some inconsistency and be a pain sometimes to check if a value exists or not.
This whole library is based on type checking that is another pain and sometimes we just don't want to use TypeScript or Flow but the native language.
Type casting is another example where Boolean('false'|'0')
returns true
while we would want it to return false
or because Number(null)
returns 0
and Number(undefined|NaN)
returns NaN
that in the end of the day makes the code inconsistent.
Deep cloning simple objects will also save your day from inexplicable object mutations. Because:
const obj = {
foo: {
bar: 5,
},
};
const copy = Object.assign({}, obj); // or const copy = { ...obj };
copy.foo.bar = 'baz';
copy; // { foo: { bar: 'baz' } }
obj; // { foo: { bar: 'baz' } }
These helpers are mostly based on creator's own work and experimentation of the language. Only image helper is based on is-png and uuid helper on uuid-validate.
npm install consis
npm i -S consis
- Language: JavaScript ES6/ES7
- VM: Node.js >= Carbon (8.17.0)
- Some helpers can use util.debuglog that writes debug messages to stderr based on the existence of the
NODE_DEBUG
environment variable. See Errors.
npm test
npm run lint
Code style follows Airbnb JavaScript Best Practices using ESLint.
npm test
Mocha and Chai.
const consis = require('consis');
// consis is an object of helpers which are also objects
const {
cast,
encodings,
Enum,
image,
math,
object,
requester,
string,
time,
uuid,
} = require('consis');
const cast = require('consis/cast');
const encodings = require('consis/encodings');
const Enum = require('consis/Enum');
const image = require('consis/image');
const math = require('consis/math');
const object = require('consis/object');
const requester = require('consis/requester');
const string = require('consis/string');
const time = require('consis/time');
const uuid = require('consis/uuid');
consis
<Object> with the following helpers.
Type casting helper.
Cast a value to a specific primitive type. If the value is not of this type or can not be inferred from this value, undefined is returned.
undefined is an interesting value because when stringifying an object, an undefined property disappears that can sometimes be useful.
Please note that numbers greater than the max safe integer will be assigned an undefined
value.
cast
<Object> with the following properties:
Cast thing to a primitive string if possible or returns undefined. Because String(undefined|null|NaN)
returns a string 'undefined'|'null'|'NaN'.
thing
<Any>- Returns: <String> | undefined
Examples:
str('hello'); // 'hello'
str(true); // 'true'
str(new String('string')); // 'string'
str(5.55); // '5.55'
str(undefined|null|NaN); // undefined
Cast thing to a primitive number, with less or equal than or greater or equal than options, or returns undefined. Because Number(null)
returns 0
and Number(undefined|NaN)
returns NaN
. Only for finite values.
thing
<Any>options
<Object> Default:undefined
ge
<Number> Greater or equal thanle
<Number> Less or equal than
- Returns: <Number> | undefined
Examples:
num(5); // 5
num('5'); // 5
num(0, { ge: 0 }); // 0
num(5, { le: 9 }); // 5
num(5, { ge: 0, le: 5 }); // 5
num(5, { ge: 0, le: 4 }); // undefined
num(new Number(5)); // 5
num(undefined|null|NaN); // undefined
Cast thing to a primitive integer number, with less or equal than or greater or equal than options, or returns undefined. In base 10 only.
thing
<Any>options
<Object> Default:undefined
ge
<Number> Greater or equal thanle
<Number> Less or equal than
- Returns: <Integer Number> | undefined
Examples:
int(5.9); // 5
int('5.9'); // 5
int(0, { ge: 0 }); // 0
int(5.55, { le: 9 }); // 5
int(5.9, { ge: 0, le: 5 }); // 5
int(5.11, { ge: 0, le: 4 }); // undefined
int(undefined|null|NaN); // undefined
Cast thing to a primitive float number, with less or equal than or greater or equal than options, or returns undefined. In base 10 only.
thing
<Any>options
<Object> Default:undefined
ge
<Number> Greater or equal thanle
<Number> Less or equal than
- Returns: <Float Number> | undefined
Examples:
float(5.9); // 5.9
float(0, { ge: 0 }); // 0
float(5.55, { le: 9 }); // 5.55
float(5.9, { ge: 0, le: 5 }); // undefined
float(5.11, { ge: 0, le: 5.12 }); // 5.11
float(undefined|null|NaN); // undefined
Cast thing to a primitive boolean if possible or returns undefined. Because Boolean('false'|'0')
returns true
and Boolean(new Boolean(0))
returns true
. A string value as 'false', 'true', '0', '1' and numbers 0 and 1 should be cast to a boolean.
thing
<Any>- Returns: <Boolean> | undefined
Examples:
bool(true); // true
bool(new Boolean(true)); // true
bool('true'); // true
bool(1); // true
bool(0); // false
bool(undefined|null|NaN); // undefined
bool('hello'); // undefined
Cast thing to a primitive array if possible or returns undefined. If allowEmpty is false and thing is an empty array then returns undefined. Please note that cast.arr
doesn't make a deep copy of an array, prefer object.clone
to do this and avoid possible mutations.
thing
<Any>allowEmpty
<Boolean> Default:true
- Returns: <Array> | undefined
Examples:
arr([5, 9]); // [5, 9]
arr([]); // []
arr([], false); // undefined
arr('[5, 9]'); // [5, 9]
arr(undefined|null|NaN); // undefined
Cast thing to a Date object or undefined if thing refers to an invalid date. Because new Date(null)
returns 1970-01-01T00:00:00.000Z
but new Date(undefined|NaN)
returns Invalid Date
.
thing
<Any>- Returns: <Date> | undefined
Examples:
date('2011-02-23T12:05:44+01:00'); // Date instance 2011-02-23T11:05:44.000Z
date([]); // undefined
date({}); // undefined
date(undefined|null|NaN); // undefined
Round n with an optional number of decimals.
n
<Number> | <String>nbDecimals
<Number> Min:0
Max:100
Default:0
- Returns: <String> | undefined
Examples:
round('5.9'); // '6'
round(5.77); // '6'
round(5.77, -1); // '6'
round(5.77, 101); // '6'
round(5.77, 2); // '6.00'
round(5.22, 3); // '5.220'
round(5.22, 1); // '5.2'
round(5, 5); // '5.00000'
round(undefined|null|NaN); // undefined
Format n with a specified number of decimals.
n
<Number> | <String>nbDecimals
<Number> Min:1
Default:1
- Returns: <String> | undefined
Examples:
precision('5.9'); // '5.9'
precision('5.99'); // '5.9'
precision(5.9); // '5.9'
precision(5.99, -1); // '5.9'
precision(5.99, 0); // '5.9'
precision(5.777, 5); // '5.77700'
precision(5.777, 2); // '5.77'
precision(undefined|null|NaN); // undefined
Enumerate available encodings.
encodings
<Object>ascii
<String> For 7-bit ASCII data only. This encoding is fast and will strip the high bit if set. Value:ascii
utf8
<String> Multibyte encoded Unicode characters. Value:utf8
utf16le
<String> 2 or 4 bytes, little-endian encoded Unicode characters. Surrogate pairs (U+10000 to U+10FFFF) are supported. Value:utf16le
ucs2
<String> Alias for utf16le. Value:ucs2
base64
<String> When creating a Buffer from a string, this encoding will also correctly accept "URL and Filename Safe Alphabet" as specified in RFC4648, Section 5. Value:base64
latin1
<String> A way of encoding the Buffer into a one-byte encoded string (as defined by the IANA in RFC1345, page 63, to be the Latin-1 supplement block and C0/C1 control codes). Value:latin1
binary
<String> Alias for latin1. Value:binary
hex
<String> Encode each byte as two hexadecimal characters. Value:hex
Example:
encodings.utf8; // 'utf8'
Enumeration helper. Recommended with strings.
enums
<Any> List of enumeration arguments.- Returns: <Object> | undefined
Example:
const directions = Enum(
'UP',
'DOWN',
'LEFT',
'RIGHT',
);
console.log(directions);
// { UP: 'UP', DOWN: 'DOWN', LEFT: 'LEFT', RIGHT: 'RIGHT' }
Image helper.
image
<Object> with the following property:
Whether a buffer is of png format.
buffer
<Buffer>- Returns: <Boolean>
Math helper.
math
<Object> with the following property:
Directly get min and max values in a specific array. Works with numbers or strings.
array
<Array><Number|String>- Returns: <Object>
- min: <Number|String>
- max: <Number|String>
Examples:
minmax([55, 9]); // { min: 9, max: 55 }
minmax(['a', 'b']); // { min: 'a', max: 'b' }
minmax({}); // {}
minmax(undefined|null|NaN); // {}
Object helper.
object
<Object> with the following properties:
Whether the specified value is not null, undefined or NaN.
thing
<Any>- Returns: <Boolean>
Examples:
exists('hello'); // true
exists({}); // true
exists(undefined|null|NaN); // false
Whether the specified value is from the specified type regarding its whole prototype.
Type
<Constructor Function>thing
<Any>- Returns: <Boolean>
Examples:
is(String, 'hello'); // true
class MyError extends Error {}
const err = new MyError;
is(MyError, err); // true
is(Error, err); // true
is(undefined|null|NaN, undefined|null|NaN); // false
Whether a specified object has a property in its own prototype. Works with symbols.
thing
<Any>prop
<Any>- Returns: <Boolean>
Examples:
hasOwn({ x: 5 }, 'x'); // true
const s = Symbol();
const obj = { [s]: 'accessible within a symbol' };
hasOwn(obj, s); // true
const err = new Error;
hasOwn(err, 'name'); // false
hasOwn(err, 'message'); // false
hasOwn(undefined|null|NaN, undefined|null|NaN); // false
Whether a specified object has a property in its whole prototype. Works with symbols.
thing
<Any>prop
<Any>- Returns: <Boolean>
Examples:
has({ x: 5 }, 'x'); // true
has([], Symbol.iterator); // true
const err = new Error;
has(err, 'name'); // true
has(err, 'message'); // true
has(undefined|null|NaN, undefined|null|NaN); // false
Number of own properties or length. For strings, empty characters aren't ignored.
thing
<Any>- Returns: <Number>
Examples:
sizeOwn({ x: 5 }); // 1
sizeOwn({}); // 0
sizeOwn([]); // 0
sizeOwn(''); // 0
sizeOwn(' '); // 5
sizeOwn(new Map([['key1', 'value1'], [2, 'value2']])); // 2
sizeOwn(undefined|null|NaN); // 0
Whether a specified object or value is empty. For strings, empty characters are considered empty.
thing
<Any>- Returns: <Boolean>
Examples:
isEmptyOwn({ x: 5 }); // false
isEmptyOwn({}); // true
isEmptyOwn([]); // true
isEmptyOwn(' '); // true
isEmptyOwn(new Map([['key1', 'value1'], [2, 'value2']])); // false
isEmptyOwn(undefined|null|NaN); // true
Get the object's type.
thing
<Any>- Returns: <Constructor Function> | undefined
Examples:
getType({}); // [Function: Object]
getType([]); // [Function: Array]
getType(''); // [Function: String]
class MyError extends Error {}
getType(new MyError); // [Function: MyError]
getType(undefined|null|NaN); // undefined
Get the object's type name.
thing
<Any>- Returns: <String> | undefined
Examples:
getTypeName({}); // 'Object'
getTypeName([]); // 'Array'
getTypeName(''); // 'String'
class MyError extends Error {}
getTypeName(new MyError); // 'MyError'
getTypeName(undefined|null|NaN); // undefined
Compare two numbers or two strings (ignoring case and accents).
a
<String|Number>b
<String|Number>- Returns: <Object>
- inferior: <Boolean>
- superior: <Boolean>
- equal: <Boolean>
Examples:
compare('a', 'z'); // { inferior: true, superior: false, equal: false }
compare(55, 9); // { inferior: false, superior: true, equal: false }
compare(5, 5); // { inferior: false, superior: false, equal: true }
compare(null); // {}
compare(undefined); // {}
compare(NaN, NaN); // {}
compare(); // {}
Make a deep copy of a specified object. Does not handle circular references, use with caution.
thing
<Any>options
<Object>ignoreUndefinedProperties
<Boolean>
- Returns: <Any>
Supported:
- object literal
- custom object including its whole prototype
- primitives:
- boolean
- number
- string
- symbol
- String
- Number
- Boolean
- Array
- Map
- Set
- DataView
- Buffer
- ArrayBuffer
- Date
- RegExp
- Error
- EvalError
- RangeError
- ReferenceError
- SyntaxError
- TypeError
- URIError
- Typed Arrays:
- Int8Array
- Uint8Array
- Uint8ClampedArray
- Int16Array
- Uint16Array
- Int32Array
- Uint32Array
- Float32Array
- Float64Array
Not supported:
- AsyncFunction
- Function
- GeneratorFunction
- Intl.Collator
- Intl.DateTimeFormat
- Intl.NumberFormat
- Intl.PluralRules
- Promise
- Proxy (but impossible to check if an object is a proxy until Node v10)
- WeakMap
- WeakSet
- SharedArrayBuffer (for security reasons)
Examples:
// bad
const obj = { a: { b: { c : 3 } } };
const copy = Object.assign({}, obj);
copy.a.b = 3; // { a: { b: 3 } }
obj; // { a: { b: 3 } }
// better
const obj = { a: { b: { c : 3 } } };
const copy = clone(obj);
copy.a.b = 3; // { a: { b: 3 } }
obj; // { a: { b: { c : 3 } } }
clone(undefined); // undefined
clone(null); // null
clone(NaN); // NaN
clone({ p: undefined }, { ignoreUndefinedProperties: true }); // {}
clone([{ x: 5, y: undefined }], { ignoreUndefinedProperties: true }); // [{ x: 5 }]
clone(new Set([{ x: undefined }, 5]), { ignoreUndefinedProperties: true }); // Set(2) { {}, 5 }
clone(undefined, { ignoreUndefinedProperties: true }); // undefined
Deep freeze anything. Does not handle circular references, use with caution.
thing
<Any>- Returns: <Any>
Not supported (won't freeze):
- DataView
- Typed Arrays:
- Int8Array
- Uint8Array
- Uint8ClampedArray
- Int16Array
- Uint16Array
- Int32Array
- Uint32Array
- Float32Array
- Float64Array
Examples:
const symbol = Symbol('s');
const object = freeze({ hello: 'hello', [symbol]: { x: 5, y: { z: new Error('error z') } } });
object.world = 'world';
object[symbol].y.z = 'world';
console.log(object.world); // undefined
console.log(object[symbol]); // { x: 5, y: { z: new Error('error z') } }
Http/s request helper.
requester
<AsyncFunction>
-
options
* <Object>:-
url
* <String> The url to request. -
data
<Object> | <String> | <Buffer> Data to write to the request. Default:{}
. -
format
<String> The response format expected. One of json, string, buffer, stream. Default:stream
. -
encoding
<String> The response encoding. See encodings. Default:utf8
.The options below are from Node http.request and depends on the version of Node used:
-
method
<String> The HTTP request method. Default:GET
. -
headers
<Object> An object containing request headers. Default:{}
. -
agent
<http.Agent> | <Boolean> Controls Agent behavior. false means a new Agent with default values will be used. Default:undefined
. -
auth
<String> Basic authentication i.e. 'user:password' to compute an Authorization header. Default:undefined
. -
createConnection
<Function> A function that produces a socket/stream to use for the request when the agent option is not used. This can be used to avoid creating a custom Agent class just to override the default createConnection function. Default:undefined
. -
defaultPort
<Number> Default port for the protocol. Default:agent.defaultPort
|undefined
. -
family
<Number> IP address family to use when resolving host or hostname. Valid values are 4 or 6. When unspecified, both IP v4 and v6 will be used. Default:undefined
. -
hints
<Number> Optional dns.lookup() hints. Default:undefined
. -
insecureHTTPParser
<Boolean> Use an insecure HTTP parser that accepts invalid HTTP headers whentrue
. Using the insecure parser should be avoided. Default:false
. -
localAddress
<String> Local interface to bind for network connections. Default:undefined
. -
localPort
<Number> Local port to connect from. Default:undefined
. -
lookup
<Function> Custom lookup function. Default:dns.lookup()
. -
maxHeaderSize
<Number> Optionally overrides the value of --max-http-header-size for requests received from the server, i.e. the maximum length of response headers in bytes. For Node >= v13.3.0. Default:8192
. -
setHost
<Boolean> Specifies whether or not to automatically add theHost
header. Default:true
. -
signal
<AbortSignal> An AbortSignal that may be used to abort an ongoing request. -
socketPath
<String> Unix domain socket. Cannot be used if one of host or port is specified, as those specify a TCP Socket. -
timeout
<Number> A number specifying the socket timeout in milliseconds. This will set the timeout before the socket is connected. Default:60000
. -
uniqueHeaders
<Array> A list of request headers that should be sent only once. If the header's value is an array, the items will be joined using ; . -
joinDuplicateHeaders
<Boolean> It joins the field line values of multiple headers in a request with , instead of discarding the duplicates. See message.headers for more information. Default:false
.
-
-
Returns: <Promise>
- Resolve: <Object>
statusCode
<Number> The http/s response status code.headers
<Object> The http/s response headers.body
<Object> | <String> | <Buffer> | <http.ServerResponse> The response body.
- Throws: <RequesterError>
- Resolve: <Object>
* required
Examples:
// GET to have crypto market data in json
(async () => {
try {
const { statusCode, headers, body } = await requester({
url: 'https://api.coingecko.com/api/v3/global',
method: 'GET',
headers: {
Accept: 'application/json',
},
format: 'json',
encoding: 'utf8',
});
// ...
} catch (e) {
// handle error
}
})();
// GET to have crypto market data in json and pipe the response stream into a file
const stream = require('stream');
const { createWriteStream } = require('fs');
const { promisify } = require('util');
const pipeline = promisify(stream.pipeline);
(async () => {
try {
const wstream = createWriteStream('crypto_market_data.json');
const { body: rstream } = await requester({
url: 'https://api.coingecko.com/api/v3/global',
method: 'GET',
headers: {
Accept: 'application/json',
},
format: 'stream',
encoding: 'utf8',
});
await pipeline(rstream, wstream); // node >=10.0.0
} catch (e) {
// handle error
}
})();
// POST to get an access token
(async () => {
try {
const { statusCode, headers, body } = await requester({
url: `url/to/get/token`,
method: 'POST',
encoding: 'utf8',
format: 'json',
data: {
grant_type: 'example',
client_id: 'example',
username: 'example',
password: 'example',
broker: 'example',
},
headers: {
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
},
});
// ...
} catch (e) {
// handle error
}
})();
// GET to have an image data stream and pipe the response stream into a file
const stream = require('stream');
const { createWriteStream } = require('fs');
const { promisify } = require('util');
const pipeline = promisify(stream.pipeline);
(async () => {
try {
const wstream = createWriteStream('bitcoin.svg', 'binary');
const { body: rstream } = await requester({
url: `https://bitcoin.org/img/home/bitcoin-img.svg`,
method: 'GET',
format: 'stream',
encoding: 'binary',
headers: {
Accept: 'image/*',
'Content-Type': 'image/*',
},
});
await pipeline(rstream, wstream); // node >=10.0.0
} catch (e) {
// handle error
}
})();
String helper.
string
<Object> with the following properties:
Split a string with the specified separator with a possible maximum split values.
options
<Object>string
<String>separator
<String> | <RegExp>max
<Number> Optional maximum split values.
- Returns: <Array>
Examples:
split({ string: 'a,b,c,d,e', separator: ',' }) // ['a', 'b', 'c', 'd', 'e']
split({ string: 'a,b,c,d,e', separator: ',', max: 2 }) // ['a', 'b']
split({ string: 'a, b,c, d,e', separator: /,\s*/, max: 2 }) // ['a', 'b']
split() // []
split({ string: 'a, b,c, d,e', max: 2 }) // []
split({ string: 'a, b,c, d,e' }) // []
put to upper case the first letter of a string.
options
<Object>string
<String>first
<Boolean> Whether only the first letter should be in upper case.max
<Number> Optional maximum split values.
- Returns: <String>
Examples:
capitalize({ string: 'abcde' }) // "Abcde"
capitalize({ string: ' abcde' }) // " abcde"
capitalize({ string: 'abCDe' }) // "AbCDe"
capitalize({ string: 'abCDe', first: true }) // "Abcde"
capitalize() // ""
capitalize({ first: true }) // ""
Put to camel case a string which words are separated by a specific string or pattern.
options
<Object>string
<String>separator
<String> | <RegExp>
- Returns: <String>
Examples:
camelCase({ string: 'camel-case-string', separator: '-' }) // "camelCaseString"
camelCase({ string: 'camel, case, string', separator: ', ' }) // "camelCaseString"
camelCase({ string: 'camel*case*string', separator: '*' }) // "camelCaseString"
camelCase({ string: 'camel, case, string', separator: /,\s+/ }) // "camelCaseString"
camelCase({ string: 'camel, case,string', separator: /,\s*/ }) // "camelCaseString"
camelCase() // ""
camelCase({ string: 'camel,case,string' }) // ""
camelCase({ separator: ',' }) // ""
Get a character at a specific index of a string. Support non-Basic-Multilingual-Plane (BMP) characters. The empty string is returned if unable to extract character from string at the specified index.
string
<String>index
<Integer>- Returns: <String>
Examples:
charAt(); // ""
charAt(null|undefined|NaN); // ""
charAt('string', -1); // ""
charAt('string', 6); // ""
charAt('string', 5); // "g"
charAt('😂𩷶ð¨Žð ¬ ', 0); // "😂"
Replace a value at a specific index of a string. Support non-Basic-Multilingual-Plane (BMP) characters. The empty string is returned if unable to replace the value at the specified index.
string
<String>index
<Integer>- Returns: <String>
Examples:
replaceAt(); // ""
replaceAt(null|undefined|NaN); // ""
replaceAt('string', -1, ''); // ""
replaceAt('string', 6, ''); // ""
replaceAt('string', 5); // ""
replaceAt('string', 0, 5); // ""
replaceAt('string', 5, 'ge'); // "stringe"
replaceAt('😂𩷶ð¨Žð ¬ ', 0, '🦄🦄🦄'); // "🦄🦄🦄𩷶ð¨Žð ¬ "
replaceAt('ð©·¶', 0, 'ð ¬ '); // "ð ¬ "
Format a string as sentence(s) starting with a capital letter and ending with a period.
string
<String>lowercase
<Boolean> Whether to lowercase all other letters than the first one.- Returns: <String> Empty string by default.
Examples:
formatSentence(true, true); // ""
formatSentence('this is a sentence.not well formatted tested with NodeJS'); // "This is a sentence. Not well formatted tested with NodeJS."
formatSentence('this is..a..sentence...'); // "This is. A. Sentence..."
Time helper.
time
<Object> with the following properties:
Sleep during ms milliseconds without blocking the loop.
ms
<Number> Time in milliseconds. Min:0
Default:0
.- Returns: <Promise>
- Resolve: <undefined>
- Never throws
Examples:
(async () => {
console.log('hello');
await sleep(2000); // sleeps 2s
console.log('world');
})();
Whether a string respects the ISO 8601 format.
thing
<String>- Returns: <Boolean>
Examples:
isISOStringDate('2020-01-25T00:00:00.000Z'); // true
isISOStringDate('2020-01-25'); // false
isISOStringDate(''|undefined|null|NaN); // false
Get the locale ISO 8601 formatted string for a specified date.
d
<Date>- Returns: <String> | <undefined>
Examples:
const d = new Date('2020-01-25T15:58:37.181Z');
d.toISOString(); // '2020-01-13T15:58:37.181Z'
toLocaleISOString(d); // '2020-01-13T16:58:37.181Z' (Paris time)
toLocaleISOString(undefined|null|NaN); // undefined
Set a timeout to a promise being resolved.
Note: There is at the moment no way to cancel the promise execution even though this function can make you manage the execution time of a promise, although you can cancel the execution by another way like using an AbortSignal to abort an HTTP request for an example (Node v15.3.0+).
ms
<Number> Time in milliseconds. Min:0
Default:0
.promise
<Promise>- Returns: <Promise>
- Resolve: <Any> Data resolved by promise
- Throws: <PromiseTimeoutError>
Examples:
// to be run in an async function
const ac = new AbortController();
try {
const res = await timeout(5000, requester({
url: 'http://google.fr',
signal: ac.signal,
}));
// ...
} catch (e) {
if (e.code === 'PROMISE_TIMEOUT') {
ac.abort();
}
}
Get times in milliseconds.
ms
<Object>minute
<Number>hour
<Number>day
<Number>week
<Number>month
<Number>
Returns the current date or the date passed as argument and adds/subtract any time from minute
, hour
, day
, week
or month
.
d
<Date> | <String>add
<Object>subtract
<Object>- Returns: <Date>
Examples:
getDate(); // returns current date
getDate({ d: '2020-01-25T15:58:37.181Z', add: { day: 2 }, subtract: { minute: 5 } }); // 2020-01-27T15:53:37.181Z (as a Date instance)
Uuid helper.
uuid
<Object> with the following properties:
Whether a string is a valid uuid in a specified version.
thing
<String>version
<String> Min:0
Max:4
Default:4
.- Returns: <Boolean>
Examples:
isValidUUID('ed94d970-3620-11ea-9dee-255c978dde81', 1); // true
isValidUUID('ed94d970-3620-11ea-9dee-255c978dde81', 5); // false
isValidUUID('0b5cce8d-f392-4636-a9c4-fee990d0ce5e'); // true
isValidUUID(''|undefined|null|NaN, undefined|null|NaN); // false
-
NODE_DEBUG: used to debug requester helper.
Examples:
NODE_DEBUG=requester
will debug requester helper.NODE_DEBUG=*
will debug requester helper plus other modules used in your project like fs, http, etc and using native util.debuglog debug function.
Errors emitted by Consis are native Error with an additional code property:
{
name,
code,
message,
stack,
}
name | code | description | module |
---|---|---|---|
PromiseTimeoutError | |||
PROMISE_TIMEOUT | promise timed out | src/time | |
RequesterError | |||
MISSING_OPTIONS | options parameter is missing | src/requester | |
BAD_URL_PROTOCOL | protocol found in options.url is invalid | src/requester | |
BAD_URL | options.url is invalid | src/requester | |
BAD_FORMAT | options.format is invalid | src/requester | |
BAD_ENCODING | options.encoding is invalid | src/requester | |
STRINGIFY_BODY_ERROR | stringifying request body from options.data led to an error | src/requester | |
RESPONSE_ERROR | an error occurred on http.ServerResponse stream | src/requester | |
RESPONSE_FORMAT_ERROR | an error occurred when formatting response body, based on options.format value | src/requester | |
REQUEST_ERROR | an error occurred on http.ClientRequest stream | src/requester | |
REQUEST_TIMEOUT | request timed out, based on options.timeout value | src/requester |
This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Please have a look at our TODO for any work in progress.
Please take also a moment to read our Contributing Guidelines if you haven't yet done so.
Please see our Support page if you have any questions or for any help needed.
For any security concerns or issues, please visit our Security Policy page.
MIT.