mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-01 18:03:58 -05:00
6 lines
144 B
JavaScript
6 lines
144 B
JavaScript
exports.descriptionRegex = /<blockquote|<ol|<h4|<table/;
|
|
|
|
exports.isBrowser = function isBrowser() {
|
|
return typeof window !== 'undefined';
|
|
};
|