const { Component } = require('inferno'); const { cacheComponent } = require('hexo-component-inferno/lib/util/cache'); class AnimeJs extends Component { render() { if (this.props.head) { return ; } return ; } } module.exports = cacheComponent(AnimeJs, 'plugin.animejs', props => { const { helper, head } = props; return { head, jsUrl: helper.url_for('/js/animation.js') }; });