We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c798c9 commit 8424231Copy full SHA for 8424231
modules/components/Link.js
@@ -2,8 +2,8 @@ var React = require('react');
2
var ActiveState = require('../mixins/ActiveState');
3
var withoutProperties = require('../helpers/withoutProperties');
4
var transitionTo = require('../helpers/transitionTo');
5
+var hasOwnProperty = require('../helpers/hasOwnProperty');
6
var makeHref = require('../helpers/makeHref');
-var hasOwnProperty = Function.prototype.call.bind(Object.prototype.hasOwnProperty);
7
8
function isLeftClickEvent(event) {
9
return event.button === 0;
modules/helpers/hasOwnProperty.js
@@ -0,0 +1 @@
1
+module.exports = Function.prototype.call.bind(Object.prototype.hasOwnProperty);
0 commit comments