mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-31 15:03:21 -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';
|
|
};
|