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;})()); : (() => {throw t;})());
module.exports = { module.exports = {
isString : isString, isString,
isObject : isObject, isObject,
isDefined : isDefined, isDefined,
isDefinedOrThrow : isDefinedOrThrow, isDefinedOrThrow,
isStringOrObjectOrThrow : isStringOrObjectOrThrow isStringOrObjectOrThrow
}; };