Code Style: object shorthand

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-07-23 13:43:07 -03:00
parent 792d32b3f9
commit 9903c12be8
1 changed files with 5 additions and 5 deletions

View File

@ -16,10 +16,10 @@ const isStringOrObjectOrThrow = (v, t) =>
: (() => {throw t;})());
module.exports = {
isString : isString,
isObject : isObject,
isDefined : isDefined,
isString,
isObject,
isDefined,
isDefinedOrThrow : isDefinedOrThrow,
isStringOrObjectOrThrow : isStringOrObjectOrThrow
isDefinedOrThrow,
isStringOrObjectOrThrow
};