Skip to content

Commit b2b51c4

Browse files
fix(index.js): add missing 'use strict' statement
1 parent 5fed8f5 commit b2b51c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
// #POSTHTML - EXPRESS
33
// ------------------------------------
44

5+
'use strict'
6+
57
const fs = require('fs')
68
const posthtml = require('posthtml')
79

8-
module.exports = function (path, options, cb) {
10+
exports = module.exports = function (path, options, cb) {
911
options.extend = options.extend || false
1012

1113
let plugins

0 commit comments

Comments
 (0)