Created
October 12, 2018 19:42
-
-
Save kmaher9/b353294065de69a2a93f3daaf95a4063 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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