From 33f76aeca881aa67af7b26c4a09c96882ea7a2a7 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 16 Apr 2019 08:28:49 +0200 Subject: [PATCH] fix(core): update --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f35af2..5716f86 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,10 @@ Use TypeScript for best in class instellisense. ```typescript import * as smartopen from '@pushrocks/smartopen'; -await smartopen.openUrl('https://lossless.com'); +const run = async () => { + await smartopen.openUrl('https://lossless.com'); +}; +run(); ``` For further information read the linked docs at the top of this readme.