UNPKG

ninjs-html

Version:

web crawling engine using cheerio for html/dom manipulation and templating

27 lines (22 loc) 458 B
'use strict' const _ = require('ninjs-lodash') const html = require('../') const _NAME = _.path.name(__filename) const _NS = `ninjs.html.test.${_NAME}` module.exports = { NAME: _NAME, NS: _NS, DIR: __dirname, FILE: __filename, run: run, info: info } function run(options) { info() } function info() { _.$(function(proc) { //console.log(_.$()) console.log(_.pretty(_.omit(_.$(), 'hash_cache'))) }) }