mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 07:16:15 -04:00
11 lines
216 B
JavaScript
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
|