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