1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 07:39:36 +02:00
it-tools/buildModules/memo/loader.js
2021-08-02 21:35:12 +02:00

11 lines
216 B
JavaScript

const loader = function (source, map) {
this.callback(
null,
`export default function (Component) {
Component.options.__memo = ${JSON.stringify(source)}
}`,
map
)
}
module.exports = loader