mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
module.exports = function(source, map) {
|
|
this.callback(
|
|
null,
|
|
`export default function (Component) {
|
|
Component.options.__docs = ${JSON.stringify(source)}
|
|
}`,
|
|
map
|
|
)
|
|
}
|