Skip to content

Commit 9d2a7b8

Browse files
committedApr 12, 2018
feat: Bind exported methods
So that code like this, which is increasingly common, doesn't fail because `this` isn't bound to the right object. ``` const {getType} = require("mime"); getType("hello.txt"); ```
1 parent abcb6e1 commit 9d2a7b8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎Mime.js

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ function Mime() {
1111
for (var i = 0; i < arguments.length; i++) {
1212
this.define(arguments[i]);
1313
}
14+
15+
this.define = this.define.bind(this);
16+
this.getType = this.getType.bind(this);
17+
this.getExtension = this.getExtension.bind(this);
1418
}
1519

1620
/**

0 commit comments

Comments
 (0)