From 104287c47ce80c68f5683c32dc7fde8698e5efcb Mon Sep 17 00:00:00 2001 From: ppe Date: Tue, 20 Sep 2022 14:01:59 +0200 Subject: [PATCH] v1.2.10 --- package.json | 2 +- src/utils/utils.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 19c02e6..777f686 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-contracts", - "version": "1.2.9", + "version": "1.2.10", "description": "An implementation of the SmartWeave smart contract protocol.", "types": "./lib/types/index.d.ts", "main": "./lib/cjs/index.js", diff --git a/src/utils/utils.ts b/src/utils/utils.ts index ca4f5e9..5119b23 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -1,8 +1,8 @@ /* eslint-disable */ import cloneDeep from 'lodash/cloneDeep'; import copy from 'fast-copy'; -import {Buffer} from 'redstone-isomorphic'; -import {randomUUID} from 'crypto'; +import { Buffer } from 'redstone-isomorphic'; +import { randomUUID } from 'crypto'; export const sleep = (ms: number): Promise => { return new Promise((resolve) => setTimeout(resolve, ms)); @@ -85,4 +85,4 @@ export function isomorphicRandomUUID() { } } -const isBrowser = new Function("try {return this===window;}catch(e){ return false;}"); +const isBrowser = new Function('try {return this===window;}catch(e){ return false;}');