medium-to-markdown/node_modules/block-elements/hash.js

7 lines
175 B
JavaScript

var arr = require('./');
var hash = module.exports = Object.create(null);
for (var i = 0; i < arr.length; i++) {
hash[arr[i]] = true;
hash[arr[i].toUpperCase()] = true;
}