From 29ca223d0482c03669a92459d173ba9378d50c3d Mon Sep 17 00:00:00 2001 From: Fityan Date: Wed, 6 Dec 2023 15:29:42 +0700 Subject: [PATCH] docs: space formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f5d151..d9259da 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ const provinces = await IdnArea.getProvinces(); Since version 3.0.0, **idn-area-data** is published as ECMAScript Module (ESM). So that, for CommonJS user, you need to import it using [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) like this : ```js -const {getProvinces} = await import('idn-area-data'); +const { getProvinces } = await import('idn-area-data'); const provinces = await getProvinces(); ```