rooks
Version:
Essential React custom hooks ⚓ to super charge your components!
15 lines (14 loc) • 515 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.doesIdentifierMatchKeyboardEvent = void 0;
var doesIdentifierMatchKeyboardEvent = function (error, identifier) {
if (error.key === identifier ||
error.code === identifier ||
error.keyCode === identifier ||
error.which === identifier ||
error.charCode === identifier) {
return true;
}
return false;
};
exports.doesIdentifierMatchKeyboardEvent = doesIdentifierMatchKeyboardEvent;