Skip to content

Instantly share code, notes, and snippets.

@kmaher9
Created October 12, 2018 19:42
Show Gist options
  • Save kmaher9/b353294065de69a2a93f3daaf95a4063 to your computer and use it in GitHub Desktop.
Save kmaher9/b353294065de69a2a93f3daaf95a4063 to your computer and use it in GitHub Desktop.
var docx = require('./docx') // my custom file containing the other two functions
docx.extract('path\\to\\my\\file.docx').then(function(res, err) {
if (err) {
console.log(err)
}
console.log(res)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment