text stringlengths 2 1.04M |
|---|
import React, { Component } from 'react';
import { View, Text, StyleSheet, TouchableOpacity } from 'react-native';
import { createStackNavigator } from 'react-navigation';
import Feed from '../screens/Feed';
import UserDetail from '../screens/UserDetail';
import BasicHeaderView from '../components/header/BasicHeaderVie... |
import { makeToJSON } from '../utils/helpers'
import Lexer from './Lexer'
export default class Clef {
constructor(clef) {
this.name = 'clef'
if (clef.name === 'lexer') {
this.parse(clef)
} else if (typeof clef === 'string') {
this.parse(new Lexer(clef))
} else {
this.sign = clef.sig... |
function SvgTextFieldsRound(props) {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path d='M0 0h24v24H0z' fill='none' />
<path d='M2.5 5.5C2.5 6.33 3.17 7 4 7h3.5v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7H14c.... |
import db from "./connection";
export function getProductData() {
const SELECT_PRODUCTS = `SELECT * FROM products`;
return db.query(SELECT_PRODUCTS).then((result) => {
return result.rows;
});
}
export function getAllIds() {
const SELECT_ALL_IDs = `SELECT id FROM products`;
return db.query(SELECT_ALL_IDs... |
window.__NUXT__=(function(a,b,c,d,e){return {staticAssetsBase:"https:\u002F\u002Fwww.baca-quran.id\u002Fstatic\u002F1627814429",layout:"default",error:b,state:{notification:{show:a,title:c,message:c},isShowSidebar:a,isSupportWebShare:a,headerTitle:"Baca Qur'an",page:"home",lastReadVerse:b,settingActiveTheme:{name:"dark... |
const CustomError = require("../extensions/custom-error");
module.exports = function repeater(str, options) {
if (typeof str != 'string') {
str = str + ''
}
if (!options.hasOwnProperty('addition')) {
options.addition = ''
}
if (typeof options.addition !== 'string') {
options.addition = options.ad... |
module.exports={A:{A:{"2":"H C G E A B EB"},B:{"2":"D g w J L","257":"N I"},C:{"2":"0 1 3 4 5 6 7 8 XB z F K H C G E A B D g w J L N I O P Q R S T U V W X Y y a b c d e f M h i j k l m n o p q r s t u v x VB PB"},D:{"2":"F K H C G E A B D g w J L N I O P Q R S T U V W X Y y a b c d e f M h i j k l m n o p","194":"0 1 3... |
const createError = require('http-errors');
const mongoose = require('mongoose');
var request = require('request')
const Yojana = require('../Models/Yojana.model');
module.exports = {
getAllYojanas: async (req, res, next) => {
try {
const results = await Yojana.find({}, { __v: 0 }).sort({ updatedAt: -1 })... |
//START OF GLOBAL VAR'S
//STORAGE ARRAY FOR SETTING and GETTING.
var cityHistory = []
//SET VAR SET CITYHISTORY STORAGE UNIVERSAL VARIBLE
var memorySet = function () {
localStorage.setItem("cityHistory", JSON.stringify(cityHistory))
}
//SET VAR MY CITY RETRIEVE
var memoryLoad = function () {
cityHistory =... |
'use strict'
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('Tasks', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
name: {
type: Sequelize.STRING
},
visibl... |
const data = () => {
myMonths = ["Janeiro","Fevereiro","Março","Abril","Maio","Junio","Julio","Agosto","Setembro","Outubro","Novembro","Dezembro"];
myDays = ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sabado'];
var data = new Date();
var dia = data.getDate();
var dia2 = St... |
/*!
=========================================================
* Bamburgh HTML5 UI Kit with Bootstrap Free v1.0.0
=========================================================
* Bamburgh is a FREE Bootstrap 4 UI Kit that is perfect for building highly customised presentation websites and application dashboards.
* Produ... |
define("code-corps-ember/templates/components/progress-bar-container", ["exports"], function (exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Ember.HTMLBars.template({ "id": "gSVnsMs6", "block": "{\"symbols\":[],\"statements\":[[1,[25,\"progress-bar... |
'use strict';
var express = require('express');
var path = require('path');
var fs = require('fs');
/**
* Returns all "routes.js" files in specified directory, including sub directory
*
* @param {String} pathName
* @returns {Array}
*/
function getRouteFiles (pathName) {
var items = fs.readdirSync(pathName);
... |
import express from 'express';
import * as stickyController from '../controllers/sticky-controller';
const router = express.Router();
router.route('/stickies')
.get(stickyController.list)
.post(stickyController.save);
router.route('/stickies/:id')
.get(stickyController.get)
.put(stickyController.upda... |
alert('ohai'); |
/*price range*/
var pathname = window.location.pathname ;
var pathname1 = window.location.pathname;
$('#sl2').slider();
$('.catalog').dcAccordion({
speed:300
});
function showCart(cart){
$('#cart .modal-body').html(cart);
$('#cart').modal();
}
function getCart() {
$.ajax({
url: pathname + '/cart/show',
t... |
'use strict';
import _ from 'lodash';
import createInitialSearches from '../util/create-initial-searches.js';
export default async function(req, res, next) {
if (!req.user || req.method !== 'GET') {
next();
}
else {
let hasInitialSearches = _.get(req.user, 'settings.explorer.initial_searches', false);
if ... |
import config from './config'
import { emitter } from '@/utils/bus.js'
// 统一导入el-icon图标
import * as ElIconModules from '@element-plus/icons'
// 导入转换图标名称的函数
const closeThisPage = () => {
emitter.emit('closeThisPage')
}
export const register = (app) => {
// 统一注册el-icon图标
for (const iconName in ElIconModules) {
... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may no... |
// THIS FILE IS AUTO GENERATED
var GenIcon = require('../lib').GenIcon
module.exports.AiTwotoneBook = function AiTwotoneBook (props) {
return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 1024 1024"},"child":[{"tag":"path","attr":{"d":"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V... |
const { fetchDependencies } = require("clio-manifest");
exports.command = "get";
exports.desc = "Download every dependency listed in the package config file";
exports.builder = {};
exports.handler = () => fetchDependencies(); |
import React, { Component } from 'react';
import { Link } from 'react-router';
class Navigation extends Component {
render() {
return (
<nav>
<ul>
<li><Link to="/">Automation</Link></li>
<li><Link to="/keys">Keys</Link></li>
<li><Link to="/servers">Servers</Link></li>
... |
// reference local blank image
Ext.BLANK_IMAGE_URL = 'js/client/mfbase/ext-3.4.0/resources/images/default/s.gif';
Ext.namespace("application");
if (window.__Geoportal$timer===undefined) {
var __Geoportal$timer= null;
}
/**
* Function: checkApiLoading
* Assess that needed classes have been loaded.
*
* Parameters... |
/**
* Copyright (c) 2015-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.
*
* @provides... |
//// [tests/cases/compiler/moduleAugmentationImportsAndExports4.ts] ////
//// [f1.ts]
export class A {}
//// [f2.ts]
export class B {
n: number;
}
//// [f3.ts]
import {A} from "./f1";
import {B} from "./f2";
A.prototype.foo = function () { return undefined; }
namespace N {
export interface Ifc { a: number;... |
$.fn.shrink = function(_maxFontSize)
{
_maxFontSize = parseInt(_maxFontSize, 10);
return this.each(function()
{
var ourText = $("span", this);
var parent = ourText.parent();
var maxHeight = parent.height();
var maxWidth = parent.width() - 20;
var fontSize = parseInt(ourText.css("fontSize"), 10... |
import $$$ from "./src/lib/tripledollar.mjs";
import tdedit from "./src/tdedit.js";
let config = {
serverUrl: 'http://localhost:4000',
loadCommand: '/load',
saveCommand: '/save'
}
$$$.appendToDoc(
['h1', {style: 'text-shadow: 2pt 2pt 4pt gray; color:gold;'}, 'Tripledollar Rich Editor'],
['p', 'Version ', tdedit... |
import React from 'react'
import BrandGallery from '../components/BrandGallery'
export default () => (
<BrandGallery brand='Sara Mari' />
) |
{
"version" : 2,
"scale" : 1.000000,
"materials": [ {
"DbgColor" : 15658734,
"DbgIndex" : 0,
"DbgName" : "Collision.002",
"colorAmbient" : [0.0, 0.0, 0.0],
"colorDiffuse" : [0.9922000169754028, 0.18039999902248383, 1.0],
"colorSpecular" : [0.0, 0.0, 0.0],
"shading" : "Lambert",
"specularCoef" : 5... |
import EmailCampaignSerializer from '@apps/campaigns/serializers/email_campaign_serializer'
import GenerateScreenshotQueue from '@apps/maha/queues/generate_screenshot_queue'
import { getDefaultConfig } from '@apps/automation/services/email'
import EmailCampaign from '@apps/campaigns/models/email_campaign'
import { acti... |
class PeerBuilder {
constructor({ peerConfig }) {
this.peerConfig = peerConfig;
const defaultFunctionValue = () => { };
this.onError = defaultFunctionValue;
this.onCallReceived = defaultFunctionValue;
this.onConnectionOpened = defaultFunctionValue;
this.onPeerStreamReceived = defaultFunctionV... |
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import expect from 'expect.js';
import { axisConfig } from '../axisConfig';
i... |
process.env.NODE_ENV = 'development';
var path = require('path');
var chalk = require('chalk');
var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var execSync = require('child_process').execSync;
var opn = require('opn');
var detect = require('detect-port');
var prompt = require('... |
export {
add,
subtract,
increment,
decrement
} from './counter';
export {
storeResult,
deleteResult
} from './result'; |
var _ = require('../util.js');
var parseExpression = require('./parse.js').expression;
function Watcher(){}
var methods = {
$watch: function(expr, fn, options){
var get, once, test, rlen; //records length
if(!this._watchers) this._watchers = [];
options = options || {};
if(options === true){
... |
import axios from './http'
export default {
// 校本页面初始化
initPage (params) {
return axios.post('/student/schoolCenter', params).then((response) => {
return response.data.result;
})
}
} |
import React from 'react'
const Arrow = () => {
return (
<svg width="14" height="14" className="ml-[7px]" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.4766 6.16667L6.00665 1.69667L7.18498 0.518337L13.6666 7L7.18498 13.4817L6.00665 12.3033L10.4766 7.83334H0.333313... |
module.exports = {
stories: ['../../components/**/*.stories.ts'],
addons: ['@storybook/addon-actions', '@storybook/addon-links', '@storybook/addon-notes'],
}; |
/* This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recogn... |
/**
* @license Apache-2.0
*
* Copyright (c) 2020 The Stdlib Authors.
*
* 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 a... |
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '@/views/Home.vue'
import Login from '@/views/Login.vue'
import Users from '@/views/Users.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/login',
name: 'Login',
compo... |
//>>built
define("dojox/mvc/StoreRefController",["dojo/_base/declare","dojo/_base/lang","dojo/when","./getStateful","./ModelRefController"],function(l,g,h,k,m){return l("dojox.mvc.StoreRefController",m,{store:null,getStatefulOptions:null,_refSourceModelProp:"model",queryStore:function(b,c){if((this.store||{}).query){th... |
import React from 'react';
import { Link } from 'react-router-dom';
const Navigation = () => {
return (
<nav>
<ul>
<li>
<Link to="/">Home</Link>
</li>
<li>
<Link to="/mybooks">My Books</Link>
... |
module.exports = App => class extends App.Controller {
async show() {
return { message: 'This is profile:show' };
}
async update() {
return { message: 'This is profile:update' };
}
async destroy() {
return { message: 'This is profile:destroy' };
}
}; |
var pieChart = function(sketch) {
this.percents = [25, 25, 50];
this.pointRadius = 9;
this.height = 2500;
this.width = 1000;
// ammount to stay away from the edges
this.visPadding = 25;
/*
Data is a {} translation of a data point
*/
this.data = [{
name: "Tom",
... |
"use strict";
exports.__esModule = true;
exports.c_data_toolbar__content_PaddingRight = {
"name": "--pf-c-data-toolbar__content--PaddingRight",
"value": "1rem",
"var": "var(--pf-c-data-toolbar__content--PaddingRight)"
};
exports["default"] = exports.c_data_toolbar__content_PaddingRight; |
import { traverse } from './traverse';
import { mergeDeep } from './utils';
export function allOfSample(into, children, options, spec) {
let res = traverse(into, options, spec);
const subSamples = [];
for (let subSchema of children) {
const { type, readOnly, writeOnly, value } = traverse({ type, ...subSchem... |
/*
======================================================================
jquery.flatheights.js
Version: 2010-09-15
http://www.akatsukinishisu.net/itazuragaki/js/i20070801.html
======================================================================
/*-------------------------------------------*/
/* $.changeLetterSize... |
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-6d44143a.js');
const amplifyTooltipCss = ":host{--font-family:var(--amplify-font-family);--background-color:var(--amplify-secondary-color);--color:var(--amplify-secondary-contrast);--border-color:var(--amplify... |
/**
* @license MIT
* @author Luca Poldelmengo
* @see {@link https://github.com/pldg/scrollzzz}
*/ |
const pageHelper = require('../../../helper/page_helper');
const setting = require('../../../setting/setting.js');
Component({
options: {
addGlobalClass: true
},
/**
* 组件的属性列表
*/
properties: {
color: {
type: String,
value: ''
},
},
/**
* 组件的初始数据
*/
data: {
},
lifetimes: {
created:... |
import React, { Component } from "react";
import Notice from "./../notices/Notice";
import { connect } from "react-redux";
import { firestoreConnect } from "react-redux-firebase";
import { compose } from "redux";
import { Redirect } from "react-router-dom";
class Noticeboard extends Component {
render() {
const ... |
"use strict";
var utils = require("../utils");
var log = require("npmlog");
module.exports = function (defaultFuncs, api, ctx) {
return function handleMessageRequest(threadID, accept, callback) {
if (utils.getType(accept) !== "Boolean") throw { error: "Please pass a boolean as a second argument." };
var re... |
const { app, BrowserWindow, ipcMain } = require('electron');
const path = require('path');
const electronLocalShortcut = require('electron-localshortcut');
const Store = require('electron-store');
const remoteMain = require('@electron/remote/main');
const { version } = require('../package.json');
const schema = require... |
var searchData=
[
['readme_61',['README',['../md__r_e_a_d_m_e.html',1,'']]]
]; |
//
// r2d3: https://rstudio.github.io/r2d3
//
const prior=data.filter(d=>d.type==="prior");
const posterior = data.filter(d=>d.type=="posterior");
//Margins
const margin = ({top: 20, right: 20, bottom: 50, left: 70});
height = width/1.3;
//
const yAxis = (text,scale)=>g => g
.attr("transform", `translate(${marg... |
import { autorun, observable } from 'mobx';
import { session } from '@electron/remote';
const debug = require('debug')('Ferdi:feature:serviceProxy');
export const config = observable({
isEnabled: true,
isPremium: true,
});
export default function init(stores) {
debug('Initializing `serviceProxy` feature');
... |
/*!
* ${copyright}
*/
/*
* IMPORTANT: This is a private module, its API must not be used and is subject to change.
* Code other than the OpenUI5 libraries must not introduce dependencies to this module.
*/
sap.ui.define([], function() {
"use strict";
/**
* Iterates over elements of the given object or array.
... |
import { makeStyles } from '@material-ui/core';
const useStyles = makeStyles((theme) => ({
infoTitle: {
textTransform: 'uppercase',
color: theme.palette.primary.dark,
},
card: {
backgroundColor: theme.palette.secondary.main,
},
}));
export default useStyles; |
let userId;
let userName;
let currentUser;
let newMember = null;
let signedOut = null;
let dropdownItems = ["Favorites", "Logout"];
$(document).ready(function() {
document.getElementById("user-sign-in").style.display = "none";
const ms = document.getElementById("main-section");
ms.classList.remove("blur-e... |
/**
* Created by teeebor on 2016-07-24.
*/
let Task = require("task");
let types = [STRUCTURE_EXTENSION,STRUCTURE_SPAWN];
function Transfer(ai) {
this.base = Task;
this.base(ai);
}
Transfer.prototype = Object.create(Task.prototype);
Transfer.prototype.constructor = Transfer;
Transfer.prototype.search = fun... |
import axios from 'axios'
import { createAsyncThunk, } from '@reduxjs/toolkit'
import * as contactsAPI from '../../Services/contactsAPI'
axios.defaults.baseURL = 'https://6193c189d3ae6d0017da8819.mockapi.io'
export const addContact = createAsyncThunk(
"contacts/addContact",
async ({ name, number }) => {
... |
module.exports = function ( { types: t } ) {
return {
visitor: {
ExportDefaultDeclaration( path ) {
const declaration = path.node.declaration
if ( t.isObjectExpression( declaration ) ) {
handleObjectExpression( declaration, path )
}
},
CallExpression( path ) {... |
// Test support for the `foreign` namespace preserving attribute case.
export default {
html: `
<page horizontalAlignment="center">
<button textWrap="true" text="button">
</page>
`,
options: {
hydrate: false // Hydration test will fail as case sensitivity is only handled for svg elements.
},
skip_if_hydr... |
OC.L10N.register(
"files_mediaviewer",
{
"Close" : "Fechar",
"Download" : "Baixar",
"Fullscreen" : "Tela cheia",
"Loading" : "Carregando",
"Mute" : "Mudar",
"Next" : "Próximo",
"of" : "de",
"Play" : "Executar",
"Previous" : "Anterior",
"Replay" : "Responder",
"Rotate ... |
const { openBrowser, openTab, closeTab, goto, click, write, currentURL, textBox } = require('taiko');
const consola = require('consola');
const getUrls = require('get-urls');
const express = require('express');
const path = require('path');
const bodyParser = require('body-parser')
const dotenv = require('dotenv');
dot... |
import React, { Component } from 'react'
class Header extends Component {
render() {
return (
<div>
<h1>class02-lab02</h1>
</div>
)
}
}
export default Header |
import { flatten, mapObject } from '../utils/helpers';
import CSSPropertyOperations from 'react-dom/lib/CSSPropertyOperations';
import { canUseDOM } from 'exenv';
let styleElement;
const styleStorage = {};
/**
* Injects the provided style into the styleStore.
*/
function injectStyleTag() {
if (!styleElement && ca... |
var struct_c_r___c_o_n_t_e_x_t =
[
[ "env", "struct_c_r___c_o_n_t_e_x_t.html#af874a28e8c6b92a261021f526f4f8378", null ],
[ "id", "struct_c_r___c_o_n_t_e_x_t.html#a2894e7a5d8dde2c904c0914e4aa23293", null ],
[ "pFunc", "struct_c_r___c_o_n_t_e_x_t.html#a3cccf63c644a2d7170ce7a9896e2d9fe", null ]
]; |
const express = require('express');
const app = express();
app.use('/descriptions', require('./descriptions'));
app.use('/options', require('./options'));
app.use('/', require('./modules/All'));
app.use('/create', require('./modules/Create'));
app.use('/update', require('./modules/Update'));
app.use('/remove', requir... |
import {MediaService} from './MediaService';
import {MessageService} from './MessageService';
import {Helpers} from '../Helpers/Helpers';
export class DownloadService {
constructor() {
this.MediaService = new MediaService();
$(document).on('shown.bs.modal', '#modal_download_url', event => {
... |
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { t... |
// Make generic get_request using the JS api
function get_request( url, response_handler, error_handler ) {
fetch( url )
.then((resp) => resp.json())
.then( response_handler ) // Handle data from GET request
.catch( error_handler ); //Error handler must take in single variable
}
// Make gen... |
var _ = require('lodash')
/**
* Create a new StatsPlugin that causes webpack to generate a stats file as
* part of the emitted assets.
* @constructor
* @param {String} output Path to output file.
* @param {Object} options Options passed to the stats' `.toJson()`.
*/
function StatsPlugin (output, options, cache)... |
'use strict';(function(d){"object"==typeof exports&&"object"==typeof module?d(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)})(function(d){function p(a,c,b){var f=a.getLineHandle(c.line),e=c.ch-1,k=b&&b.afterCursor;null==k&&(k=/(^| )cm-fat-cursor(... |
#pragma strict
var moveUp : KeyCode;
var moveDown: KeyCode;
var speed: float = 10;
function moveAI(direction, moveSpeed: float) {
GetComponent.<Rigidbody2D>().transform.position = Vector3.MoveTowards
(transform.position, Vector3(transform.position.x, direction, 0), moveSpeed * Time.deltaTime);
}
functio... |
//Predefined optons for JSLint
/*jslint browser: true*/
var ghLinkHelper = (function ($) {
"use strict";
/// Replace the placeholder text your-github-username with the
// name stored in sessionStorage or create a text input if it is
// not in sessionStorage
var ghUserName = window.sessionStorage.getI... |
module.exports={A:{A:{"2":"J E F G A B jB"},B:{"1":"P S T U V W X Y Z a b c Q H d","2":"C K L D M N O"},C:{"1":"LB R MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P S T lB U V W X Y Z a b c Q H d","2":"0 1 2 3 4 5 6 7 8 9 kB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB ... |
/**
* WYSIHTML5 Editor
*
* @param {Element} textareaElement Reference to the textarea which should be turned into a rich text interface
* @param {Object} [config] See defaultConfig object below for explanation of each individual config option
*
* @events
* load
* beforeload (for internal use only)
* f... |
import path from "path";
import { fileURLToPath } from "url";
import TestStream from "test262-stream";
import TestRunner from "../utils/parser-test-runner.js";
const dirname = path.dirname(fileURLToPath(import.meta.url));
const ignoredFeatures = new Set([
"__getter__",
"__proto__",
"__setter__",
"AggregateErr... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/* tslint:disable */
var load_themed_styles_1 = require("@microsoft/load-themed-styles");
load_themed_styles_1.loadStyles([{ "rawString": ".root_c0c0a405{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowr... |
import { $ } from '../utils.js';
import { SELECTOR } from '../constants/index.js';
import { getCarNames, getTryCount, restartApp } from './linstener.js';
const setInputButtonsEvent = () => {
var _a, _b;
(_a = $(SELECTOR.CARNAME_SUBMIT)) === null || _a === void 0 ? void 0 : _a.addEventListener('click', () => get... |
var unemploymentdata = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"id": "01",
"properties": {
"name": "Alabama",
"unemployment": 3.8
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-87.359296, 35.00118]... |
exports.compile=function(){return"} else {\n"},exports.parse=function(e,n,t,r,a){return t.on("*",function(e){throw new Error('"else" tag does not accept any tokens. Found "'+e.match+'" on line '+n+".")}),a.length&&"if"===a[a.length-1].name}; |
//app.js
const Argos = require('./utils/argos/index.js');
Argos.init({url:'https://fundebug.com/wxjs/',enableLog: true})
// debugger
// var fundebug = require("./utils/fundebug.js");
// fundebug.init({
// apikey: "8b82fd0ae1bd138623bf49e06a5f19a2f301fa1712c359e1346bda2d5190fc54"
// });
App({
onLaunch: function ()... |
import styled from 'styled-components';
import PropTypes from 'prop-types';
import Base from '../Typography/base';
import { theme } from '../../constants';
const Title = Base.withComponent('h1').extend`
font-size: 16px;
line-height: 24px;
`;
const Description = Base.withComponent('p').extend`
font-size: 12px;
... |
'use string'
var app = angular.module('cloudStorm.filterRow', [])
app.component('csFilterRow', {
bindings : {
resource : "<",
filterValue : "<",
filter : "&",
openNewResourcePanel : "&",
refreshIndex : "&",
},
templateUrl : "components/cs-filter-row/cs-filter-row-template.html",
control... |
window.__NUXT__=(function(a,b,c,d,e){return {staticAssetsBase:"https:\u002F\u002Fwww.baca-quran.id\u002Fstatic\u002F1627814429",layout:"default",error:b,state:{notification:{show:a,title:c,message:c},isShowSidebar:a,isSupportWebShare:a,headerTitle:"Baca Qur'an",page:"home",lastReadVerse:b,settingActiveTheme:{name:"dark... |
var TextHighlightRules = ace.require("ace/mode/text_highlight_rules").TextHighlightRules;
export class DocumentHighlightRules extends TextHighlightRules {
constructor(){
var keywordMapper = this.createKeywordMapper({
"variable.language": "this",
"keyword": "Type Project Assigned-To... |
var searchData=
[
['element',['element',['../structtiny__request__.html#a02c8fb6d26d0cfb0264423a1cb643159',1,'tiny_request_']]],
['enablechecksum',['enableCheckSum',['../classTiny_1_1ProtoLight.html#ad7b4ef5a43c187f0d1915efe7450bc40',1,'Tiny::ProtoLight::enableCheckSum()'],['../classTiny_1_1IProtoFd.html#a0f43402e8... |
import { connect } from 'react-redux';
import DisplayCharts from 'components/charts/DisplayCharts';
const mapStateToProps = ({ charts, config }) => ({
measurements: config.measurements,
chartData: charts
});
export default connect(mapStateToProps)(DisplayCharts); |
// build/ImmersiveControls.js
import * as THREE7 from "three";
import StatsMesh from "@depasquale/three-stats-mesh";
// build/modules/controls/VRControls.js
import * as THREE2 from "three";
import * as TWEEN from "@tweenjs/tween.js";
import { XRControllerModelFactory } from "three/examples/jsm/webxr/XRControllerModelF... |
/**
* @module nyc/ReplaceTokens
*/
/**
* @desc Class to provide string replacement functionality
* @public
* @abstract
* @class
* @constructor
*/
class ReplaceTokens {
/**
* @desc Replace tokens in a string with values from a provided object
* @public
* @method
* @param {string} str String with t... |
function birinci(callback) {
setTimeout(function () {
console.log("birinci");
callback(ucuncu);
}, 1000)
}
function ikinci(callback) {
setTimeout(function () {
console.log("ikinci");
callback();
}, 2000);
}
function ucuncu() {
console.log("ucuncu");
}
birinci(ikinc... |
/*
* Text
* Visit http://createjs.com/ for documentation, updates and examples.
*
* Copyright (c) 2010 gskinner.com, inc.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restricti... |
/**
* @module @svizzle/utils/[any-object]-[array-object]
*/
import * as _ from 'lamb';
import {reduceFromEmptyObject} from './[any-any]:accumcb-[array-any]';
/**
* Return a function expecting an array and returning an object of occurrences
* of all the keys contained in the property reachable with the provided acc... |
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import SendMessage from "./pages/sendMessage.js";
import "../node_modules/font-awesome/css/font-awesome.min.css";
import "bootstrap/dist/css/bootstrap.min.css";
import { Switch, Route, Link, BrowserRouter as Rout... |
import React, { useState,useEffect, useCallback } from 'react'
function useCallbackDemo(){
const [count,setCount]=useState(0)
const handleResize=useCallback(()=>{
console.log(`the count is:${count}`);
},[count])
// const handleResize=()=>{
// console.log(`the count is:${count}`);
... |
import React, { Component } from "react";
import { Modal, Container, Button } from "react-bootstrap";
import "./LeftMenuPanel.css";
class LeftMenuPanel extends Component {
render() {
return (
<div>
<Modal
{...this.props}
aria-labelledby="contained-modal-title-vcenter"
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.