UNPKG

hili-lipsum

Version:

Hilichurlian language lorem ipsum generator and web scraper

15 lines (12 loc) 374 B
const path = require('path') const { Hilichurl } = require('../hilichurl') /** * Hilipsum is a subclass of Hilichurl that defines the local * pre-scraped hilichurlianDB.json in its constructor */ class Hilipsum extends Hilichurl { constructor () { super(path.join(__dirname, '..', '..', '..', '..', 'data', 'hilichurlianDB.json')) } } module.exports = Hilipsum