Source: core.js

/**
 * Initialization of namespace
 * @namespace kraken
 */


//Creating window.kraken namespace if we are not in Node JS module
if (typeof exports === 'undefined') {
    this.kraken = {};
}