6 lines
144 B
JavaScript
6 lines
144 B
JavaScript
exports.descriptionRegex = /<blockquote|<ol|<h4|<table/;
|
|
|
|
exports.isBrowser = function isBrowser() {
|
|
return typeof window !== 'undefined';
|
|
};
|