This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Alauda Dev Console Configuration", | |
"$schema": "http://json-schema.org/draft-07/schema", | |
"type": "object", | |
"required": [ | |
"authentication", | |
"console" | |
], | |
"properties": { | |
"authentication": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.defaultOpts = defaultOpts; | |
exports.default = void 0; | |
var parser = _interopRequireWildcard(require("@babel/parser")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by JounQin on 16/6/2. | |
*/ | |
+function ($) { | |
function trueType(input) { | |
var output = Object.prototype.toString.call(input); | |
return output.substring(8, output.length - 1); | |
} | |
$.each(['Object', 'Array', 'Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Null', 'Undefined'], function (index, value) { |