Skip to content
Snippets Groups Projects
B.2.1.propertyCheck.js 444 B
Newer Older
  • Learn to ignore specific revisions
  • // Copyright 2009 the Sputnik authors.  All rights reserved.
    // This code is governed by the BSD license found in the LICENSE file.
    
    
    Brian Terlson's avatar
    Brian Terlson committed
    /*---
    info: Check type of various properties
    
    Brian Terlson's avatar
    Brian Terlson committed
    description: Checking properties of this object (escape)
    ---*/
    
    
    if (typeof this.escape  === "undefined")  $ERROR('#1: typeof this.escape !== "undefined"');
    if (typeof this['escape'] === "undefined")  $ERROR('#2: typeof this["escape"] !== "undefined"');