�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` 'use strict'; const {promisify} = require('util'); const path = require('path'); const fs = require('graceful-fs'); const fileType = require('file-type'); const globby = require('globby'); const makeDir = require('make-dir'); const pPipe = require('p-pipe'); const replaceExt = require('replace-ext'); const junk = require('junk'); const readFile = promisify(fs.readFile); const writeFile = promisify(fs.writeFile); const handleFile = async (sourcePath, {destination, plugins = []}) => { if (plugins && !Array.isArray(plugins)) { throw new TypeError('The `plugins` option should be an `Array`'); } let data = await readFile(sourcePath); data = await (plugins.length > 0 ? pPipe(...plugins)(data) : data); let destinationPath = destination ? path.join(destination, path.basename(sourcePath)) : undefined; destinationPath = (fileType(data) && fileType(data).ext === 'webp') ? replaceExt(destinationPath, '.webp') : destinationPath; const returnValue = { data, sourcePath, destinationPath }; if (!destinationPath) { return returnValue; } await makeDir(path.dirname(returnValue.destinationPath)); await writeFile(returnValue.destinationPath, returnValue.data); return returnValue; }; module.exports = async (input, {glob = true, ...options} = {}) => { if (!Array.isArray(input)) { throw new TypeError(`Expected an \`Array\`, got \`${typeof input}\``); } const filePaths = glob ? await globby(input, {onlyFiles: true}) : input; return Promise.all( filePaths .filter(filePath => junk.not(path.basename(filePath))) .map(async filePath => { try { return await handleFile(filePath, options); } catch (error) { error.message = `Error occurred when handling file: ${input}\n\n${error.stack}`; throw error; } }) ); }; module.exports.buffer = async (input, {plugins = []} = {}) => { if (!Buffer.isBuffer(input)) { throw new TypeError(`Expected a \`Buffer\`, got \`${typeof input}\``); } if (plugins.length === 0) { return input; } return pPipe(...plugins)(input); };