UNPKG

wordpos

Version:

wordpos is a set of part-of-speech utilities for Node.js & browser using the WordNet database.

17 lines (15 loc) 324 B
/*! * wordpos.js * * Node.js part-of-speech utilities using WordNet database. * * Copyright (c) 2012-2019 mooster@42at.com * https://github.com/moos/wordpos * * Released under MIT license */ if (process.browser) { module.exports = require('./browser'); } else { module.exports = require('./node'); }