UNPKG

@easyscrape/core

Version:

EasyScrape is a NodeJS module designed to be integrated into your web scraping project. With it, you can more easily get information from the web from a JSON object to organized data, as a REST API could give you!

12 lines 376 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class AbstractSingleton { constructor() { if (AbstractSingleton.Instance) return AbstractSingleton.Instance; AbstractSingleton.Instance = this; return this; } } exports.default = AbstractSingleton; //# sourceMappingURL=Singleton.abstract.js.map