UNPKG

node-nutch

Version:

A set of Gulp commands that provide similar functionality to Apache Nutch.

13 lines (10 loc) 253 B
/** * Class to handle parse state: */ var ParseState = function (state){ this.state = state || ParseState.NOTPARSED; }; ParseState.NOTPARSED = 'notparsed'; ParseState.SUCCESS = 'success'; ParseState.FAILED = 'failed'; module.exports = ParseState;