I'm looking through the source code to base.js, within it there is a object referenced via what seems like a regex?
if (ancestor && (typeof value == "function") && // overriding a method?
// the valueOf() comparison is to avoid circular references
(!ancestor.valueOf || ancestor.valueOf() != value.valueOf()) &&
/\bbase\b/.test(value)) {
It's that "/\bbase\b/" object.
What is this? My search engine in my ide treats it as a regex? A google search renders no results.