code
stringlengths
2
1.05M
/* SortTable version 2 7th April 2007 Stuart Langridge, http://www.kryogenix.org/code/browser/sorttable/ Instructions: Download this file Add <script src="sorttable.js"></script> to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to m...
steal .plugins("jquery/dom/fixture") //load your app .plugins('funcunit/qunit') //load qunit .then("fixture_test")
'use strict'; module.exports = function(name) { name = name.toLowerCase(); if (['test', 'ember', 'vendor'].indexOf(name) > -1) { return false; } if (name.indexOf('.') > -1) { return false; } if (!isNaN(parseInt(name.charAt(0), 10))) { return false; } return true; };
/*! * jquery.fancytree.awesome.js * * Use glyph fonts as instead of icon sprites. * (Extension module for jquery.fancytree.js: https://github.com/mar10/fancytree/) * * Copyright (c) 2013, Martin Wendt (http://wwWendt.de) * * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo ...
/*! lazysizes - v4.1.8 */ !function(a,b){var c=function(){b(a.lazySizes),a.removeEventListener("lazyunveilread",c,!0)};b=b.bind(null,a,a.document),"object"==typeof module&&module.exports?b(require("lazysizes")):a.lazySizes?c():a.addEventListener("lazyunveilread",c,!0)}(window,function(a,b,c){"use strict";function d(){i...
// Generated by CoffeeScript 1.7.0 var theBait, theSwitch, _ref; theBait = 1000; theSwitch = 0; _ref = [theSwitch, theBait], theBait = _ref[0], theSwitch = _ref[1];
/* Riot v4.0.7, @license MIT */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = global || self, factory(global.riot = {})); }(this, function (exports) { 'use strict...
// This is very hacky, but this should be temporary hack // until we make "sharp" a peerDependency and can be removed afterwards. // It's not done yet because it would cause too much friction. // Image processing is important part of Gatsby ecosystem // and there's lot of guides and tutorials that we don't control // t...
//! moment-timezone.js //! version : 0.5.14 //! Copyright (c) JS Foundation and other contributors //! license : MIT //! github.com/moment/moment-timezone (function (root, factory) { "use strict"; /*global define*/ if (typeof define === 'function' && define.amd) { define(['moment'], factory); // ...
/** * @ngdoc model * @name NotificationMessageDisplay * @function * * @description * Represents a JS version of Merchello's NotificationMessageDisplay object */ var NotificationMessageDisplay = function() { var self = this; self.key = ''; self.name = ''...
/** * Bonus Manager * * @param {Game} game */ function BonusManager(game) { BaseBonusManager.call(this, game); this.bonuses.index = false; this.onLoad = this.onLoad.bind(this); this.loaded = false; this.sprite = new SpriteAsset('images/bonus.png', 3, 4, this.onLoad, true); } BonusManager.pro...
import { moduleForComponent, test } from 'ember-qunit'; import { componentDisabledTest } from './-general-helpers'; moduleForComponent('mdl-checkbox', 'Unit | Component | mdl checkbox', { // Specify the other units that are required for this test // needs: ['component:foo', 'helper:bar'], unit: true }); test('i...
// Generated by CoffeeScript 1.10.0 var Message, async, log, markAllMessagesAsIgnored, patchOneAccount, ramStore, safeLoop; Message = require('../models/message'); safeLoop = require('../utils/safeloop'); async = require('async'); ramStore = require('../models/store_account_and_boxes'); log = require('../utils/log...
var arg1 = process.argv[2]; var arg2 = process.argv[3]; import {PI, sqrt, square} from './solution-math'; console.log(PI); console.log(sqrt(+arg1)); console.log(square(+arg2));
var uploadfs = require('./uploadfs.js')(); var fs = require('fs'); var _ = require('lodash'); var async = require('async'); var localOptions = { backend: 'local', uploadsPath: __dirname + '/test', uploadsUrl: 'http://localhost:3000/test' }; var imageSizes = [ { name: 'full', width: 1140, height: 1140 ...
define({ "_widgetLabel": "Reviewer Dashboard", "spatialFilterSelection": "Ergebnisse nach Geographie filtern", "drawSelectionArea": "Eine Ergebnisauswahlfläche auf der Karte zeichnen", "currentSelection": "Ergebnisse nur in der aktuellen Kartenausdehnung anzeigen", "censusBlockGroup": "Ergebnisse nach Geograp...
var Readable = require('readable-stream').Readable ; function StreamArray(list) { if (!Array.isArray(list)) throw new TypeError('First argument must be an Array'); Readable.call(this, {objectMode:true}); this._i = 0; this._l = list.length; this._list = list; } StreamArray.p...
"use strict"; var Client = require("./../lib/index"); var testAuth = require("./../testAuth.json"); var github = new Client({ debug: true }); github.authenticate({ type: "oauth", token: testAuth["token"] }); var testRepo = { owner: "aktau", repo: "github-release" }; github.repos.getReleases({ ...
/** * @fileoverview Tests for eslint:recommended. * @author Kevin Partington */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const assert = require("chai").assert; con...
(function(){ angular.module('angularytics', []).provider('Angularytics', function() { var eventHandlersNames = ['Google']; this.setEventHandlers = function(handlers) { if (angular.isString(handlers)) { handlers = [handlers]; } eventHandlersNames =...
'use strict'; // This tests that the lower bits of mode > 0o777 still works in // process.umask() const common = require('../common'); const assert = require('assert'); if (!common.isMainThread) common.skip('Setting process.umask is not supported in Workers'); let mask; if (common.isWindows) { mask = 0o600; } ...
// This is included after the JS for each type when we build for the web. var _types = window.ottypes = window.ottypes || {}; var _t = module.exports; _types[_t.name] = _t; if (_t.uri) _types[_t.uri] = _t; })();
steal('./fixture/fixture_test.js', './object/object_test.js', './string/string_test.js', './function/function_test.js');
var os = require('os'); var bleno = require('bleno'); var platform = os.platform(); console.log('pseudo - estimote sticker'); bleno.on('stateChange', function(state) { console.log('on -> stateChange: ' + state); if (state === 'poweredOn') { var advertisement = Buffer.concat([ new Buffer('03030f18', '...
// Copyright (c) 2012 Titanium I.T. LLC. All rights reserved. See LICENSE.txt for details. // This spike demonstrates how to serve a static file. // // It's not robust and it reflects a very basic understanding of node; use it // as a starting point, not a production-quality example. "use strict"; var http = require(...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S15.10.2.10_A1.1_T1; * @section: 15.10.2.10; * @assertion: The production CharacterEscape :: t evaluates by returning * the character \u0009; * @description: Use \t in RegEx...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S15.8.2.15_A1; * @section: 15.8.2.15; * @assertion: If x is NaN, Math.round(x) is NaN; * @description: Checking if Math.round(x) is NaN, where x is NaN; */ // CHECK#1 ...
version https://git-lfs.github.com/spec/v1 oid sha256:ac2c407935d16c489208ff3b33575d25a98e0a9fe490c89e97cacc2bd8743dd4 size 5800
var _ = { map: function(arr, iteratee) { var newArr = []; for (i=0; i<arr.length; i++){ newArr.push(iteratee(arr[i])); } return newArr; }, reduce: function(arr, iteratee, memo) { var sum = 0; if (memo === null) { memo = arr[0]; } for (v...
pageflow.FilesExplorerView = Backbone.Marionette.ItemView.extend({ template: 'templates/files_explorer', className: 'files_explorer editor dialog', mixins: [pageflow.dialogView], ui: { entriesPanel: '.entries_panel', filesPanel: '.files_panel', okButton: '.ok' }, events: { 'click .ok': fu...
/* * TypedArray constructor */ /*@include util-buffer.js@*/ /*--- { "custom": true } ---*/ function printProps(x) { print(typeof x, Object.prototype.toString.call(x), x.length, x.byteLength, x.byteOffset); } /*=== TypedArray constructor call test new Int8Array(b, 8, 1) [object Int8Array] [object Int8Arra...
// Karma configuration // http://karma-runner.github.io/0.12/config/configuration-file.html // Generated on 2014-07-24 using // generator-karma 0.8.3 module.exports = function(config) { 'use strict'; config.set({ // enable / disable watching file and executing tests whenever any file changes autoWatch: tr...
/** * @fileoverview Schema of the latest config object that is supplied to Solium * @author Raghav Dua <duaraghav8@gmail.com> */ // A fully qualified object for this Schema is: /* { "plugins": [ "satoshi" ], "extends": "solium:all", "rules": { "pragma-on-top": "off", "no-with": "warning", "deprecated-s...
var fs = require('fs') var core if (process.platform === 'win32' || global.TESTING_WINDOWS) { core = require('./windows.js') } else { core = require('./mode.js') } module.exports = isexe isexe.sync = sync function isexe (path, options, cb) { if (typeof options === 'function') { cb = options ...
/******************************************************************************* * 异步上传文件兼容IE8,火狐和谷歌可用 * 实现单个多次上传不刷新 * 修改自:http://www.ponxu.com * @author 柳伟伟 <702295399@qq.com> * @version 1.3 (2015-6-14) *******************************************************************************/ (function ($) { var f...
/** * Formatter.js * * Released under LGPL License. * Copyright (c) 1999-2015 Ephox Corp. All rights reserved * * License: http://www.tinymce.com/license * Contributing: http://www.tinymce.com/contributing */ /** * Text formatter engine class. This class is used to apply formats like bold, italic, font size ...
/** * TODO */ import { Vector2 } from "../../../build/three.module.js"; var DepthLimitedBlurShader = { defines: { 'KERNEL_RADIUS': 4, 'DEPTH_PACKING': 1, 'PERSPECTIVE_CAMERA': 1 }, uniforms: { 'tDiffuse': { value: null }, 'size': { value: new Vector2( 512, 512 ) }, 'sampleUvOffsets': { value: [ new ...
/************************************************************* * * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/Other.js * * Copyright (c) 2011-2016 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the...
import Ember from 'ember'; import startApp from '../helpers/start-app'; var application; module('Acceptance: <%= classifiedModuleName %>', { setup: function() { application = startApp(); }, teardown: function() { Ember.run(application, 'destroy'); } }); test('visiting /<%= dasherizedModuleName %>', f...
// route urls to their virtual pages // re-route map (for rename) wn.re_route = {}; wn.route_titles = {}; wn.route = function() { if(wn.re_route[window.location.hash]) { // after saving a doc, for example, // "New DocType 1" and the renamed "TestDocType", both exist in history // now if we try to go back, //...
/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @providesModule isEmpty */ 'use strict'; /** * Mimics empty from PHP. */ function isEmpty(obj) { if (Array.isArray(obj)) { re...
import{generateUtilityClass,generateUtilityClasses}from"@material-ui/unstyled";export function getStepButtonUtilityClass(t){return generateUtilityClass("MuiStepButton",t)};const stepButtonClasses=generateUtilityClasses("MuiStepButton",["root","horizontal","vertical","touchRipple"]);export default stepButtonClasses;
module.exports = function (gulp, plugins) { gulp.task('syncAssets', function(cb) { plugins.sequence( // 'jst:dev', // 'images', // 'less:dev', // 'sync:dev', // 'coffee:dev', 'compileAssets', 'images', 'linkAssets', cb ); }); };
steal.then(function() { /** * @class DocumentJS.types.static * @tag documentation * @parent DocumentJS.types * Sets the following functions and attributes to be added to Class or Constructor static (class) functions. * * ###Example * * @codestart * $.Model.extend('Cookbook.Models.Recipe', * /* @S...
/*! * jAnimate v0.2.0 * https://github.com/renatorib/janimate * * Copyright (c) 2014-2015 Renato Ribeiro * Released under the MIT license * * Date: 2015-07-02T11:43:03.268Z */ (function (factory) { if (typeof define === 'function' && define.amd) { define(['jquery'], factory); } else if (typeof exports ...
import { Template } from 'meteor/templating'; import { settings } from 'meteor/rocketchat:settings'; import { ChatRoom } from 'meteor/rocketchat:models'; Template.room.helpers({ sentimentSmile() { if (!settings.get('GoogleNaturalLanguage_Enabled')) { return; } const room = ChatRoom.findOne(this._id, { field...
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'smiley', 'af', { options: 'Lagbekkie opsies', title: 'Voeg lagbekkie by', toolbar: 'Lagbekkie' });
/** * Created by yuan on 2016/3/7. */ /** * Created by yuan on 2016/3/7. */ /** * Created by Yuan on 2016/3/6. */ var http = require('http'); var mime = require('mime'); var url = require('url');//对URL进行处理,把字符串转成对象 var fs = require('fs'); var users = [{ username: '钟汉良', age: '41' },{ username: '袁圆', age: '12' },...
/*! UIkit 3.0.0-rc.11 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define('uikit', factory) : (global.UIkit = facto...
/** * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * */ 'use st...
/* jshint node: true */ module.exports = function(environment) { var ENV = { modulePrefix: 'dummy', environment: environment, baseURL: '/', locationType: 'none', EmberENV: { FEATURES: { // Here you can enable experimental features on an ember canary build // e.g. 'with-contr...
"use strict";import"../../Extensions/Themes/HighContrastDark.js";
'use strict'; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.definePrope...
/* global location */ import React from 'react' import Link from 'next/link' export default class DynamicPage extends React.Component { static getInitialProps({ query }) { return { text: query.text } } state = {} componentDidMount() { const [, hash] = location.href.split('#') this.setState({ hash...
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'colorbutton', 'en-au', { auto: 'Automatic', bgColorTitle: 'Background Colour', colors: { '000': 'Black', '800000': 'Maroon', '8B...
var slugify = require('../slugify'); module.exports = function() { slugify("Un éléphant à l'orée du bois"); };
run_spec(__dirname, ["markdown"], { proseWrap: "always" }); run_spec(__dirname, ["markdown"], { proseWrap: "always", singleQuote: true });
import colors from "../colors"; import ramp from "../ramp"; export var scheme = new Array(3).concat( "ece2f0a6bddb1c9099", "f6eff7bdc9e167a9cf02818a", "f6eff7bdc9e167a9cf1c9099016c59", "f6eff7d0d1e6a6bddb67a9cf1c9099016c59", "f6eff7d0d1e6a6bddb67a9cf3690c002818a016450", "fff7fbece2f0d0d1e6a6bddb67a9cf3690c...
'use strict'; angular.module("ngLocale", [], ["$provide", function($provide) { var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; $provide.value("$locale", { "DATETIME_FORMATS": { "AMPMS": [ "AM", "PM" ], "DAY": [ "nedjelja",...
describe("Model", function(){ var Asset, spy; beforeEach(function(){ Asset = Spine.Model.setup("Asset", ["name", "visible", "contact_methods"]); spy = jasmine.createSpy(); }); it("can create records", function(){ var asset = Asset.create({name: "test.pdf"}); expect(Asset.first()).toEqual(asset...
var debug = {}; var map = L.map('map').setView([21, 80], 5); // India L.tileLayer('http://{s}.tiles.mapbox.com/v3/spatialdev.map-c9z2cyef/{z}/{x}/{y}.png', { maxZoom: 18, attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' + '<a href="http://creativecommons.org/l...
/* YUI 3.5.0 (build 5089) Copyright 2012 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add("lang/calendar_fr",function(a){a.Intl.add("calendar","fr",{weekdays:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],short_weekdays:["Dim","Lun","Mar","M...
var dom = (function nodeSelector () { // Convert a function into a property selector let DOM = sel => DOM[sel]; // The second-level SELECTOR // dom.class.X; dom.class.X = 5; delete.dom.class.X // This is NOT matched though: dom.a.X let derivated = (selector, orig) => new Proxy(orig, { get: (orig, name)...
pageflow.EntryPublicationQuotaDecoratorView = Backbone.Marionette.Layout.extend({ template: 'templates/entry_publication_quota_decorator', className: 'quota_decorator', regions: { outlet: '.outlet' }, ui: { state: '.quota_state', exhaustedMessage: '.exhausted_message' }, modelEvents: { ...
/** * Copyright 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
/** * This program is distributed under the terms of the MIT license. * * Copyright 2011 (c) Pierre Guilleminot <pierre.guilleminot@gmail.com> */ /** * Jabber-RPC plugin (XEP-0009) * Allow the management of RPC */ Strophe.addConnectionPlugin("rpc", { _connection : undefined, _whitelistEnabled : false, ...
// swagger-ui.js // version 2.1.0-alpha.7 $(function() { // Helper function for vertically aligning DOM elements // http://www.seodenver.com/simple-vertical-align-plugin-for-jquery/ $.fn.vAlign = function() { return this.each(function(i){ var ah = $(this).height(); var ph = $(this).parent().height(); var mh...
/*! * Vue.js v2.5.14 * (c) 2014-2018 Evan You * Released under the MIT License. */ /* */ var emptyObject = Object.freeze({}); // these helpers produces better vm code in JS engines due to their // explicitness and function inlining function isUndef (v) { return v === undefined || v === null } function isDef (...
import {Component, PropTypes} from 'react'; import ReactDOM from 'react-dom'; import events from '../utils/events'; const isDescendant = (el, target) => { if (target !== null) { return el === target || isDescendant(el, target.parentNode); } return false; }; const clickAwayEvents = ['mouseup', 'touchend']; c...
import Ember from 'ember'; export default Ember.Route.extend({ model: function() { var paged = this.store.find('todo', {page: "all"}); return paged; } });
(function () { /*globals describe:false, before:false, after:false*/ 'use strict'; var npmlog = require('npmlog'); var rimraf = require('rimraf'); var os = require('os'); if (process.env.NO_ETCD) { npmlog.error('Test', 'No etcd server on this machine! No tests, then.'); return;...
/*globals describe, beforeEach, afterEach, it*/ var assert = require('assert'), moment = require('moment'), should = require('should'), sinon = require('sinon'), when = require('when'), rewire = require('rewire'), _ = require('lodash'), // Stuff we are testing api ...
var parseScope = require('lexical-scope'); var through = require('through'); var merge = require('xtend'); var path = require('path'); var fs = require('fs'); var processPath = require.resolve('process/browser.js'); var combineSourceMap = require('combine-source-map'); var defaultVars = { process: function () { ...
(function() { /** * Controller for the protractor api view. * * @constructor * @ngInject * @param $anchorScroll anchorScroll service. * @param $http HTTP service. * @param $location Location service. * @param $route Route service. * @param $sce Strict Contextual Escaping service. * @para...
/* * Document : base_pages_register.js * Author : pixelcave * Description: Custom JS code used in Register Page */ var BasePagesRegister = function() { // Init Register Form Validation, for more examples you can check out https://github.com/jzaefferer/jquery-validation var initValidationRegister =...
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang("specialchar","ja",{euro:"ユーロ記号",lsquo:"左シングル引用符",rsquo:"右シングル引用符",ldquo:"左ダブル引用符",rdquo:"右ダブル引用符",ndash:"半角ダッシュ",mdash:"全角ダッシュ",i...
/* Finnish initialisation for the jQuery UI date picker plugin. */ /* Written by Harri Kilpiö (harrikilpio@gmail.com). */ !function(a){"function"==typeof define&&define.amd? // AMD. Register as an anonymous module. define(["../datepicker"],a): // Browser globals a(jQuery.datepicker)}(function(a){return a.regional.fi={c...
/* * TypedArray.prototype.set() * * This is a very tricky method to implement: * * - Source may be a generic array or a TypedArray. * * - Source may be a view pointing to the same underlying buffer. * * - The operation is not a byte copy but conceptually values are * read from the source array...
/** * tty.js - an xterm emulator * Christopher Jeffrey (https://github.com/chjj/tty.js) * * Originally forked from (with the author's permission): * * Fabrice Bellard's javascript vt100 for jslinux: * http://bellard.org/jslinux/ * Copyright (c) 2011 Fabrice Bellard * (Redistribution or commercial use is prohib...
const test = require('tape') , path = require('path') , fs = require('fs') test('test port-libuv is being used', function (t) { var version = fs.readFileSync(path.join(__dirname, '../deps/leveldb/leveldb.gyp'), 'utf8') .match(/'ldbversion': '([^']+)'/)[1] , porth t.ok(version, 'mat...
var k = Symbol(); var foo = { [Symbol.iterator]: "foobar", get [k]() { return k; } }; assert(foo[Symbol.iterator], "foobar") assert(foo[k], k)
export default () => ( <div> <p>About Page</p> </div> )
/* YUI 3.18.1 (build f7e7bcb) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add("lang/datatype-date-format_ca-ES",function(e){e.Intl.add("datatype-date-format","ca-ES",{a:["dg.","dl.","dt.","dc.","dj.","dv.","ds."],A:["diumenge","dilluns","dimarts...
function floatval (mixed_var) { // + original by: Michael White (http://getsprink.com) // % note 1: The native parseFloat() method of JavaScript returns NaN when it encounters a string before an int or float value. // * example 1: floatval('150.03_page-section'); // * returns 1: 150.03 // * ...
var webpack = require('webpack'); var WebpackDevServer = require('webpack-dev-server'); var config = require('./webpack.dev.config'); new WebpackDevServer(webpack(config), { publicPath: config.output.publicPath, hot: true, historyApiFallback: true }).listen(3000, 'localhost', function(err, result) { if (err) {...
var keystone = require('keystone'), Types = keystone.Field.Types; var Enquiry = new keystone.List('Enquiry', { nocreate: true }); Enquiry.add({ name: { type: Types.Name, required: true }, email: { type: Types.Email, required: true }, phone: { type: String }, enquiryType: { type: Types.Select, options: [ { val...
/* flatpickr v4.1.2, @license MIT */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (factory((global.bn = {}))); }(this, (function (exports) { 'use strict'; var fp = typeof wi...
/** * @license Highcharts JS v6.1.4 (2018-09-25) * * Parabolic SAR Indicator for Highstock * * (c) 2010-2017 Grzegorz Blachliński * * License: www.highcharts.com/license */ 'use strict'; (function (factory) { if (typeof module === 'object' && module.exports) { module.exports = factory; } else if (typeof de...
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = {{{ muiRequireStmt }}}; const {{className}} = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> {{{paths}}} </SvgIcon> ); } ...
steal('jquery', 'can/util', 'can/view', function ($, can) { //---- ADD jQUERY HELPERS ----- //converts jquery functions to use views var convert, modify, isTemplate, isHTML, isDOM, getCallback, // text and val cannot produce an element, so don't run hookups on them noHookup = { 'val': true, 'text': true ...
console.warn("warn -",`Imports like "const unsplash = require('simple-icons/icons/unsplash');" have been deprecated in v6.0.0 and will no longer work from v7.0.0, use "const { siUnsplash } = require('simple-icons/icons');" instead`),module.exports={title:"Unsplash",slug:"unsplash",get svg(){return'<svg role="img" viewB...
var structblackbone_1_1___i_m_a_g_e___d_e_l_a_y_l_o_a_d___d_e_s_c_r_i_p_t_o_r = [ [ "AllAttributes", "structblackbone_1_1___i_m_a_g_e___d_e_l_a_y_l_o_a_d___d_e_s_c_r_i_p_t_o_r.html#ab521e6608e68c126081d67bdf8c8daef", null ], [ "Attributes", "structblackbone_1_1___i_m_a_g_e___d_e_l_a_y_l_o_a_d___d_e_s_c_r_i_p_t_...
'use strict'; var _ = require('lodash'); var errors = require('./errors'); var $ = require('./util/preconditions'); var UNITS = { 'BTC' : [1e8, 8], 'mBTC' : [1e5, 5], 'uBTC' : [1e2, 2], 'bits' : [1e2, 2], 'satoshis' : [1, 0] }; /** * Utility for handling and converting bitcoins units. Th...
/* flatpickr v4.0.2, @license MIT */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.flatpickr = factory()); }(this, (function () { 'use strict'; /*! *********************...
version https://git-lfs.github.com/spec/v1 oid sha256:2b23d115610c5a6754b5d6e833f145af174d48a4a21017dddf08a7d3ffd303ae size 463
/// Copyright (c) 2009 Microsoft Corporation /// /// Redistribution and use in source and binary forms, with or without modification, are permitted provided /// that the following conditions are met: /// * Redistributions of source code must retain the above copyright notice, this list of conditions and /// ...
define(["require","intern!object","intern/chai!assert","../../rpc/JsonService","../../rpc/JsonpService","../../_base/array","dojo/_base/array"],function(n,e,t,r,o,s,c){t.notStrictEqual(s,c),e({name:"dojo/rpc",JsonService:{echo:function(){return new r({serviceURL:"/__services/rpc/json",methods:[{name:"myecho",parameters...
"use strict"; exports.__esModule = true; exports.default = void 0; var _ExecutionEnvironment = require("fbjs/lib/ExecutionEnvironment"); var _arrayFindIndex = _interopRequireDefault(require("array-find-index")); var _invariant = _interopRequireDefault(require("fbjs/lib/invariant")); function _interopRequireDefault...
var a = require('a'); var b = require('b'); module.exports = function () { console.log('robots!'); };
/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in...