mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
dd668892d7
no issue - after we have dropped node 4, we have removed all 'use strict' usages - but they came back from older pull requests
8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
module.exports = {
|
|
name: 'hr',
|
|
type: 'dom',
|
|
render(opts) {
|
|
return opts.env.dom.createElement('hr');
|
|
}
|
|
};
|