UNPKG
png-chunks-extractor
Version:
latest (2.0.0)
2.0.0
1.1.0
1.0.1
1.0.0
Basic PNG chunks extractor
github.com/MrWormy/png-chunks-extractor
MrWormy/png-chunks-extractor
png-chunks-extractor
/
index.cjs
8 lines
(6 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
pce =
import
(
'./lib/png-chunks-extractor.js'
);
module
.
exports
=
async
function
(
file, options = {}
) {
let
def; ({
default
: def} =
await
pce);
return
await
def
(file, options); };