moos / wordpos

Part-of-speech utilities for node.js based on the WordNet database.
478 stars 41 forks source link

DeprecationWarning: Calling an asynchronous function without callback is deprecated. #17

Closed guatedude2 closed 7 years ago

guatedude2 commented 7 years ago

Using Node 7.2.1 The followoing results in the warning: DeprecationWarning: Calling an asynchronous function without callback is deprecated.

const WordPOS = require('wordpos');
const wordpos = new WordPOS();
wordpos.getNouns(text).then((nouns) => {
    console.log(nouns)
})

Still works but it's annoying going through the logs and seeing this.

moos commented 7 years ago

Fixed in v1.1.1. Thanks.