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, {
|
||||
primitive: true,
|
||||
// Convert the arguments to a unique string, required for primitive mode.
|
||||
normalizer: function(args) {
|
||||
return JSON.stringify(args);
|
||||
}
|
||||
normalizer: (...args) => JSON.stringify(args),
|
||||
});
|
||||
|
||||
export function parse(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue