From 04d60333a92a3e0d38fd6045ea7c4c04a73a69c6 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 5 Oct 2020 16:20:27 +0000 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 2bdc446..0c014c3 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -10,7 +10,7 @@ export const parse = plugins.bufferJson.parse; * @param objArg * @param optionsArg */ -export const stringify = (objArg: any, optionsArg: plugins.IStableJsonTypes['Options'] = {}) => { +export const stringify = (objArg: any, optionsArg: plugins.IStableJsonTypes['Options'] = {}): string => { const bufferedJson = plugins.bufferJson.stringify(objArg); objArg = JSON.parse(bufferedJson); return plugins.stableJson(objArg, optionsArg);