mirror of
https://github.com/danbulant/pngjs
synced 2026-05-27 13:51:50 +00:00
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
'use strict';
|
|
|
|
|
|
var parse = require('./parser-sync');
|
|
|
|
|
|
exports.read = function(buffer, options) {
|
|
|
|
return parse(buffer, options || {});
|
|
};
|