From 6e2f2a081921a60af757c829b290ae6bfedbfa0f Mon Sep 17 00:00:00 2001 From: Munieru <20086673+munierujp@users.noreply.github.com> Date: Sat, 24 Aug 2019 11:03:18 +0900 Subject: [PATCH] Add of.ts --- src/of.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/of.ts diff --git a/src/of.ts b/src/of.ts new file mode 100644 index 0000000..275f623 --- /dev/null +++ b/src/of.ts @@ -0,0 +1,10 @@ +import HtmlParser_ from './HtmlParser_' + +// NOTE: Below function will be public in Google Apps Script. +// eslint-disable-next-line camelcase +function of (value: GoogleAppsScript.XML_Service.Element) { + return new HtmlParser_(value) +} + +// NOTE: Below statement will be removed by clasp. +export default of