We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is a async/await wrapper for the getExifFromLocalFileUsingNodeFs function. What do you think, is it worth including to the README.md file ?
getExifFromLocalFileUsingNodeFs
README.md
/** * @param path * @returns {Promise} */ async function extractExif(path) { return new Promise((resolve, reject) => { exiftool.getExifFromLocalFileUsingNodeFs(fs, path, (error, exif) => { error ? reject(error) : resolve(Object.assign({file: path}, exif)) }); }) }
.. then inside your async code, you can write:
// inside an async function... const exif = await extractExif('/path/to/my/file1.jpg')
The text was updated successfully, but these errors were encountered:
Promises are new to me (I don't write much JS) but looks good. Feel free to add to README.md. Thanks!
Sorry, something went wrong.
No branches or pull requests
Here is a async/await wrapper for the
getExifFromLocalFileUsingNodeFs
function.What do you think, is it worth including to the
README.md
file ?.. then inside your async code, you can write:
The text was updated successfully, but these errors were encountered: