v1.2.10
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
ppe
2022-09-20 14:01:59 +02:00
parent 053ceaf3ea
commit 104287c47c
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "warp-contracts", "name": "warp-contracts",
"version": "1.2.9", "version": "1.2.10",
"description": "An implementation of the SmartWeave smart contract protocol.", "description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts", "types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js", "main": "./lib/cjs/index.js",

View File

@@ -1,8 +1,8 @@
/* eslint-disable */ /* eslint-disable */
import cloneDeep from 'lodash/cloneDeep'; import cloneDeep from 'lodash/cloneDeep';
import copy from 'fast-copy'; import copy from 'fast-copy';
import {Buffer} from 'redstone-isomorphic'; import { Buffer } from 'redstone-isomorphic';
import {randomUUID} from 'crypto'; import { randomUUID } from 'crypto';
export const sleep = (ms: number): Promise<void> => { export const sleep = (ms: number): Promise<void> => {
return new Promise((resolve) => setTimeout(resolve, ms)); 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;}');