mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02:00
18 lines
257 B
JavaScript
18 lines
257 B
JavaScript
'use strict';
|
|
|
|
const Sharp = require('./constructor');
|
|
[
|
|
'input',
|
|
'resize',
|
|
'composite',
|
|
'operation',
|
|
'colour',
|
|
'channel',
|
|
'output',
|
|
'utility'
|
|
].forEach(function (decorator) {
|
|
require('./' + decorator)(Sharp);
|
|
});
|
|
|
|
module.exports = Sharp;
|