Code Style: object shorthand
Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
parent
792d32b3f9
commit
9903c12be8
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue