From f6199740aa583dc1b4780b19bb1324fc320f3694 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 5 May 2019 19:10:07 +0200 Subject: [PATCH] fix(core): update --- ts/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/index.ts b/ts/index.ts index da663ec..520814e 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -6,7 +6,7 @@ export class Smartjson { // ====== static parse = JSON.parse; - static stringify = async (objArg: any, optionsArg: plugins.stableJson.Options) => { + static stringify = (objArg: any, optionsArg: plugins.stableJson.Options) => { return plugins.stableJson(objArg, optionsArg) };