Lint fixes after recent PR merges
This commit is contained in:
parent
6150c3dcc0
commit
6caccdda5b
1 changed files with 1 additions and 3 deletions
|
@ -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(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue