style: formatted code

This commit is contained in:
arthurfiorette 2023-02-17 00:03:50 -03:00
parent 370b9bdb6c
commit 69f6529826
No known key found for this signature in database
GPG Key ID: 9D190CD53C53C555

View File

@ -46,7 +46,7 @@ export function buildMemoryStorage(cloneData = false) {
find: (key) => {
const value = storage.data[key];
/* istanbul ignore if 'only available on super recent browsers' */
/* istanbul ignore if 'only available on super recent browsers' */
if (cloneData && value !== undefined) {
if (typeof structuredClone === 'function') {
return structuredClone(value);