Created
February 8, 2017 07:43
-
-
Save magemore/bc05ffc81f36a1f5cbdea1becd27efec to your computer and use it in GitHub Desktop.
This file contains 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
xlsxj = require('xlsx-to-json'); | |
xlsxj({ | |
input: 'p.xlsx', | |
output: 'php-books.json' | |
}, function(err, result) { | |
if (err) { | |
console.log(err); | |
} | |
else { | |
console.log(result); | |
} | |
}); | |
~ | |
~ | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment