Lint fixes after recent PR merges

This commit is contained in:
Scott Nonnenberg 2019-06-19 16:23:57 -07:00
parent 6150c3dcc0
commit 6caccdda5b

View file

@ -25,9 +25,7 @@ function _format(
export const format = memoizee(_format, { export const format = memoizee(_format, {
primitive: true, primitive: true,
// Convert the arguments to a unique string, required for primitive mode. // Convert the arguments to a unique string, required for primitive mode.
normalizer: function(args) { normalizer: (...args) => JSON.stringify(args),
return JSON.stringify(args);
}
}); });
export function parse( export function parse(