text stringlengths 2 1.04M |
|---|
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var React = _interopRequireWildcar... |
import React from "react";
import styled from "styled-components";
const FilterStyle = styled.div`
flex-grow: 1;
background-color: rgba(0,0,0,0.83);
height: 100px;
display: flex;
justify-content: space-around;
align-items: center;
color: black;
padding: 20px 0px;
@media (max-width: 768px) {
heigh... |
"use strict";
angular.module('bahmni.ipd')
.directive('backLinksCacheBuster', ['$state', '$window', function ($state, $window) {
var controller = function ($scope, $state, $window) {
$scope.navigationLinks = $state.current.data.navigationLinks;
$scope.homeBackLink = $state.current.d... |
deepmacDetailCallback("e441e6000000/24",[{"d":"2010-10-28","t":"add","a":"Planetenring 12\nRonnenberg Lower Saxony 30952\n\n","c":"GERMANY","o":"Ottec Technology GmbH"},{"d":"2013-04-11","t":"change","a":"Bünteweg 33\nGehrden Lower Saxony 30989\n\n","c":"GERMANY","o":"Ottec Technology GmbH"},{"d":"2015-08-27","t":"cha... |
import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import { Card } from 'react-bootstrap';
import './HornedBeast.css';
class HornedBeasts extends React.Component {
constructor(props) {
super(props);
this.state = {
voteCount: 0
};
// This binding is necessary to make `t... |
const { ActivityHandler } = require('botbuilder');
const { DialogSet, WaterfallDialog } = require("botbuilder-dialogs");
class DialogBot extends ActivityHandler {
constructor(userState, conversationState) {
super();
const dialogState = conversationState.createProperty('dialogState');
... |
/**
* @license https://github.com/flams/CouchDB-emily-tools
* The MIT License (MIT)
* Copyright (c) 2012-2014 Olivier Scherrer <pode.fr@gmail.com>
*/
var http = require("http"),
qs = require("querystring"),
cookie = require("cookie"),
mixin = require("simple-object-mixin"),
CouchDBTools = require("./src/CouchD... |
// merge object b properties into object a
module.exports = function merge ( a, b ) {
if ( b ) {
for ( const k in b ) {
a[ k ] = b[ k ];
}
}
return a;
}; |
(function (ng) {
var mod = ng.module("administradoresModule", ['restauranteAdministradorModule','comprasModule' ]);
mod.constant("administradoresContext", "api/administradores");
mod.config(['$stateProvider', '$urlRouterProvider', function ($stateProvider, $urlRouterProvider) {
var basePath = 's... |
module.exports = {
'globals': {
"Fusion": true
},
'env': {
'browser': true,
'es6': true,
'node': true,
'jquery': true,
'commonjs': true
},
'extends': [
'eslint:recommended',
'plugin:vue/essential'
],
'parserOptions': {
"parser": "babel-eslint",
'ecmaVersion': 6,
... |
const loader = document.querySelector('.loader');
const main = document.querySelector('.main');
function init() {
setTimeout(() => {
loader.style.opacity = 0;
loader.style.display = 'none';
main.style.display = 'block';
setTimeout(() => (main.style.opacity = 1), 50);
}, 4000);
}
init(); |
'use strict'
// TODO: Use native "events" module if in Node.js environment?
const EventEmitter = require('eventemitter3').EventEmitter
/* A WebSocketChannel exposes an EventEmitter-like API for sending and handling
events or requests over the channel through the attached WebSocketWrapper.
`var channel = new WebSo... |
/* See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* Esri Inc. licenses this file to You 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
*
... |
// turmoil-init
import './js/turmoil-init';
// react
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { createRoot } from 'react-dom/client';
// redux
import { Provider } from 'react-redux';
import { IntlProvider } from 'react-intl';
import store from './js/redux/store/index';
// l... |
var entities = require('./entityManager');
var Rune = require('./RuneVM');
var Tags = require("./cards/cardTags");
exports.updateState = function(state)
{
//Check for dead heroes
var keys = Object.keys(state.controllers);
keys.forEach(function (element) {
if(state.controllers[element].hero.... |
const CurtainDevice = require('../CurtainDevice.js');
const Constants = require('../../../constants/Constants.js');
const PropFormat = require('../../../constants/PropFormat.js');
const PropUnit = require('../../../constants/PropUnit.js');
const PropAccess = require('../../../constants/PropAccess.js');
class DooyaCur... |
'use strict';
const memoizee = require('memoizee');
const { version } = require('../../package');
const ensureExists = require('./ensure-exists');
const path = require('path');
const os = require('os');
const cachePath = path.resolve(os.homedir(), '.serverless/artifacts', version);
module.exports = memoizee(
async... |
let install = `npm i air-datepicker -S`;
let basicUsage =
`import AirDatepicker from 'air-datepicker';
import 'air-datepicker/air-datepicker.css';
new AirDatepicker('#my-element'[, options])
`;
let basicInit = `new AirDatepicker('#input');`
export let basicInitInline =
`new AirDatepicker('#div');
// Or init with {... |
const express = require('express');
const router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index');
});
module.exports = router; |
const jwt = require("jsonwebtoken");
// checking if user is authorized by verifying token is in request header
module.exports = (req, res, next) => {
const token = req.headers.authorization;
if (token) {
jwt.verify(token, process.env.JWT_SECRET, err => {
if (err) {
res.sta... |
import Question from "./Question";
const sinon = require('sinon');
sinon.stub(Math, 'random').returns(0.2);
const Info = {
title: 'Question'
};
export default Info;
export const Basic = () => <Question/>;
export const WithDisabled = () => <Question disabled/>; |
/**
* The Toggler Component
*
* @module aui-tooltip
*/
var Lang = A.Lang,
DOC = A.config.doc;
/**
* A base class for Toggler Delegate.
*
* Check the [live demo](http://alloyui.com/examples/tooltip/).
*
* @class A.TooltipDelegate
* @extends Base
* @param {Object} config Object literal specifying widget ... |
// 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 applicable law or agreed to in writing, software
// distributed un... |
/*
*
* LoginPage actions
*
*/
import { DEFAULT_ACTION, LOGIN_USER, HANDLE_CHANGE } from './constants';
export function defaultAction() {
return {
type: DEFAULT_ACTION,
};
}
export function handleChange(name, value) {
return {
type: HANDLE_CHANGE,
name,
value
}
}
export function handleSub... |
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.2.3.7-6-a-230
description: >
Object.defineProperties - 'O' is an Array, 'P' is an array index
property, TypeError is thrown if 'P' is data property, and'desc'
... |
import React from "react"
import PropTypes from "prop-types"
import { StaticQuery, graphql } from "gatsby"
import styled from "@emotion/styled"
const Container = styled.div`
text-align: center;
`
const OuterContainer = styled.div`
display: flex;
align-items: center;
justify-content: center;
flex-direction: ... |
/* eslint-disable no-use-before-define */
const src = jest.fn(() => binWrapperObject);
const dest = jest.fn(() => binWrapperObject);
const path = jest.fn(() => binWrapperObject);
const run = jest.fn((_, cb) => {
cb();
return binWrapperObject;
});
const use = jest.fn(() => binWrapperObject);
const binWrapperObject ... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S11.10.3_A3_T2.6;
* @section: 11.10.3;
* @assertion: Operator x | y returns ToNumber(x) | ToNumber(y);
* @description: Type(x) is different from Type(y) and both types v... |
import {SVGToImage} from "./svg_to_png";
const pcbStackup = window.pcbStackup;
const renderConverter = window.gerberToSvg.render;
export default async function renderStackup(layers, options){
const stackup = await pcbStackup(layers, options);
let id_num = 14214;
let individualLayerSVGs = stackup.layers
... |
export function selectBook(book) {
return {
type: "BOOK_SELECTED",
payload: book
}
} |
import React from 'react';
import PictureCard from './PictureCard';
import '../styles/picturelist.css';
const PictureList = (props) => {
const pictures = props.images.map((image) => {
return <PictureCard key={image.id} image={image} />
}) ;
return (
<div className="list">
{pictures}
</div>
... |
/*****************************************************************************
* Open MCT, Copyright (c) 2014-2021, United States Government
* as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version ... |
let video = document.querySelector('.main video');
function myFunction() {
var x = document.getElementById("myInput");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
// closing tables
function myTable() {
var x = document.getElementById("mytablediv");
if (x.sty... |
({
doInit : function(component, event, helper) {
helper.callServer(
component,
"c.getPolicies",
function (response) {
component.set("v.policies", response);
},
{
accountId : component.get('v.recordId')
}... |
const app = require('../index');
const models = app.set('models');
const moment = require('moment-timezone');
const async = require('async');
const _ = require('lodash');
const activities = require('../server/constants/activities');
const slackLib = require('../server/lib/slack');
onlyExecuteInProdOnMondays();
const ... |
import styled from '@emotion/styled';
const Timestamp = styled.h3`
display: inline-block;
font-size: 16px;
font-style: italic;
font-weight: 500;
margin: 0;
text-align: right;
transition: 0.25s ease-in-out;
vertical-align: middle;
width: 200px;
`;
export default Timestamp; |
import React from 'react';
import {Redirect, Route} from 'react-router-dom';
import {useSelector} from 'react-redux';
const PublicRoute = ({children, ...rest}) => {
const isLoggedIn = useSelector((state) => state.auth.isLoggedIn);
const isAuthenticated = isLoggedIn || localStorage.getItem('token');
return... |
/**
* Copyright IBM Corp. 2019, 2020
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
*/
import { _ as _objectWithoutProperties, I as Icon, a as _extends } from '../I... |
/**
*
* Asynchronously loads the component for LineChart
*
*/
import loadable from 'utils/loadable';
export default loadable(() => import('./index')); |
/*
* Copyright 2014-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Amazon Software License (the "License"). You may not use
* this file except in compliance with the License. A copy of the License is
* located at
*
* http://aws.amazon.com/asl/
*
* or in the "license" fi... |
export default [
"$scope",
function($scope) {
$scope.indicators = [
"Grading",
"College-Going Culture",
"High Quality Work",
"Timeliness and Preparation"
];
$scope.toggleAccordion = true;
}
]; |
module.exports = function questions(obj) {
let object = obj || {};
object.defaults = object.defaults !== false;
return {
type: 'checkbox',
name: 'cssPostProcessors',
message: 'Which CSS post-processors do you want to use?',
choices: [
{
name: 'Autoprefixer (PostCSS)',
value: 'autoprefixer',
c... |
import PropTypes from 'prop-types'
import classNames from 'classnames'
import React from 'react'
import './Sidebar.sass'
class Sidebar extends React.Component {
static propTypes = {
isRight: PropTypes.bool.isRequired,
collapsible: PropTypes.bool,
}
static defaultProps = {
collapsib... |
module.exports = db => {
const Response = db.Model.extend({
tableName: 'responses',
question() {
return this.belongsTo('Choice', 'choiceId');
},
user() {
return this.belongsTo('User', 'userId');
}
});
return db.model('Response', Response);
}; |
import Route from '@ember/routing/route';
import { next } from '@ember/runloop';
export default {
name: 'hightlightjs',
initialize: function () {
return Route.reopen({
renderTemplate: function () {
this._super(...arguments);
return next(this, function () {});
},
});
},
}; |
import cn from 'classnames'
import getHeight from 'dom-helpers/query/height'
import qsa from 'dom-helpers/query/querySelectorAll'
import PropTypes from 'prop-types'
import React from 'react'
import { findDOMNode } from 'react-dom'
import dates from './utils/dates'
import { accessor, elementType } from './utils/propTyp... |
function showFileDetails() {
var nameInput = document.getElementById("fileName");
//var sizeLabel = document.getElementById("fileSize");
var selectedFile = document.getElementById('fileInput');
nameInput.value = selectedFile.files.item(0).name + ", " + formatBytes(selectedFile.files.item(0).size, 2);
}... |
import React from 'react';
import styled, { withTheme } from 'styled-components';
import { convertNumbers } from 'bn-number-utils';
import { Link } from 'gatsby';
import Box from './Box';
import Flex from './Flex';
import Text from './Text';
const MenuContainer = styled.div`
margin: 64px 0 0 0;
padding: 32px 0 0 ... |
var searchData=
[
['noncopyable_121',['NonCopyable',['../class_non_copyable.html',1,'']]],
['nonmoveable_122',['NonMoveable',['../class_non_moveable.html',1,'']]]
]; |
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){function h(a){function m(){e=a.document;n=e[CKEDITOR.env.ie?"getBody":"getDocumentElement"]();c=CKEDITOR.env.quirks?e.getBody():e.getDocumentElement();var d=CKEDIT... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
'use strict';
var Message = require('azure-iot-common').Message;
var debug = require('debug')('azure-iot-common.Http');
/**
* @class module:azure-iot-http-... |
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './AppH5'
import router from './router'
import wxService from './api/wxService'
import httpService from './api/httpService'
import './filter';... |
import {domain} from './utils';
// portal首页
export const ADM_INDEX = '/portal?name=首页&path=' + domain() + '#/index';
// refer
export const ADM_REFER = 'refer';
// sessionId
export const ADM_SESSION_ID = 'sessionId';
// sessionId
export const ADM_REMEMBER_ME = 'rememberKey';
// 用户缓存
export const ADM_USER_INFO = 'us... |
/*!
* .______ _______ ___ .______ ______ ___ .__________.
* ( _ ) ( ____) / \ ( _ ) ( ) / \ ( )
* | |_) ) | |__ / ^ \ | |_) ) | ,----' / ^ \ `---| |---`
* | _ < | __) / /_\ \ | ) | | / /_\ \ | |
* |... |
// Karma configuration
// Generated on Sat Dec 13 2014 08:47:16 GMT+0000 (GMT)
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '../',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keywor... |
import axios from 'axios';
import { message } from 'antd';
export const getPlaces = () => async (dispatch) => {
try {
const placesResponse = await axios.get('/api/places');
const places = placesResponse.data;
dispatch(setPlaces(places));
} catch (err) {
console.log(err);
}
};
export const addPla... |
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
export * from './nz-connected-overlay';
export * from './nz-overlay.module';
export * from './overlay-position';
//# sourceMappingURL=data:appl... |
import React from "react"
import { Link } from "gatsby"
import Bio from "../components/bio"
import Layout from "../components/layout"
import SEO from "../components/seo"
const Restox = ({ data, location }) => {
const siteTitle = data.site.siteMetadata.title
return (
<Layout location={location} title={siteTitl... |
import IPagination from './IPagination.vue'
import IPaginationNumeric from './IPaginationNumeric.vue'
export default {
title: 'Component/IPagination',
component: IPagination,
argTypes: {
type: {
control: {
type: 'radio', options: [undefined, 'primary', 'normal', 'ghost'] }
},
},
};
... |
import { all, takeEvery, call } from 'redux-saga/effects'
import { expectSaga } from 'redux-saga-test-plan'
import {
addArrayItem,
removeArrayItem,
updateDoc
} from '../../../../../../../util/firestoreUtils'
import * as actions from './actions'
import * as sagas from './sagas'
import { fetchAircrafts } from '../.... |
var http = require('http');
var url = require('url');
var fs = require('fs');
var writeMyHTML = function(fileName, response) {
fs.readFile(__dirname + fileName, function(err, file) {
response.write(file);
response.end(); // fica aqui porque a leitura e' assincrona
});
}
var workRequest = f... |
apishore.directive("apishoreExpandableText", function($injector, $modal, userRoles, apishoreUtils, apishoreAuth)
{
return {
restrict: 'E',
templateUrl : window.apishoreConfig.webappRoot+"/$ng/apishore/directives/expandable-text.html",
scope: {
model: '=',
},
link:... |
const express = require("express");
const router = express.Router();
const {
createFunc,
deleteFuncById,
} = require("../controllers/func.controller");
router.post("/create", createFunc);
router.delete("/delete/:id", deleteFuncById);
module.exports = router; |
/**
* Copyright (c) 2018, KETI
* All rights reserved.
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following... |
export function selectSection(section) {
return {
type: 'SECTION_SELECTED',
payload: section
}
} |
/*______________
| ______ | U I Z E J A V A S C R I P T F R A M E W O R K
| / / | ---------------------------------------------------
| / O / | MODULE : Uize.Dom.VirtualEvent Package
| / / / |
| / / / /| | ONLINE : http://www.uize.com
| /____/ /__/_| | COPYRIGHT : (... |
require("dotenv").config({path: ".env"});
const HDWalletProvider = require("truffle-hdwallet-provider");
const ethers = require('ethers');
const Web3 = require('web3');
const contract = require('./artifacts/App');
const config = require("./config/app.config");
const mnemonic = process.env.MNEMONIC;
const endPoint = `... |
export { default } from './ec-datepicker.vue'; |
import request from '@/utils/request'
const getDefaultState = () => {
return {
activityList: {
list: []
},
attachFiles: {
small: {},
large: {}
},
commentList: {
list: []
},
replyList: {}
}
}
const state = g... |
document.addEventListener('DOMContentLoaded', () => {
console.log('Hello Bulma!');
}); |
import React from 'react';
import Slider from 'rc-slider';
import Tooltip from 'rc-tooltip';
const Handle = Slider.Handle;
const defaultFormatter = value => value;
export default (formatter = defaultFormatter) => (props) => {
const {value, dragging, index, ...restProps} = props;
return (
<Tooltip
prefix... |
// uuid.js
//
// Copyright (c) 2010-2012 Robert Kieffer
// MIT License - http://opensource.org/licenses/mit-license.php
(function() {
var _global = this;
// Unique ID creation requires a high quality random # generator. We feature
// detect to determine the best RNG source, normalizing to a functio... |
function EditApplicationsController (models, $state, strings, $scope) {
const vm = this || {};
const { me, application, organization } = models;
const omit = [
'authorization_grant_type',
'client_id',
'client_secret',
'client_type',
'created',
'modified',
... |
(function() {
angular.module('ui.grid')
.service('uiGridGridMenuService', [ 'gridUtil', 'i18nService', 'uiGridConstants', function( gridUtil, i18nService, uiGridConstants ) {
/**
* @ngdoc service
* @name ui.grid.uiGridGridMenuService
*
* @description Methods for working with the grid menu
*/
var... |
import { moduleFor, test } from 'ember-qunit';
moduleFor('service:flashes', 'Unit | Service | flashes', {
// Specify the other units that are required for this test.
// needs: ['service:foo']
});
test('it allows to show an error', function(assert) {
let service = this.subject();
assert.equal(service.get('fla... |
// Snowpack Configuration File
// See all supported options: https://www.snowpack.dev/reference/configuration
/** @type {import("snowpack").SnowpackUserConfig } */
module.exports = {
mount: {
public: '/',
src: '/_dist_',
},
plugins: ['@snowpack/plugin-typescript', '@snowpack/plugin-babel'],
packageOpti... |
import React from 'react';
import { View, StyleSheet, ScrollView, Text } from 'react-native';
import {THEME_COLOR} from "../../../lib/Constants";
import SDSWebView from "../../../components/SDSWebView";
export default class SDSHome extends React.Component {
constructor(props) {
super(props);
this.state... |
const { Post, User, Comment } = require("../models");
const router = require("express").Router();
router.get("/", (req, res) => {
Post.findAll({
attributes: ["id", "title", "content", "created_at"],
include: [
{
model: Comment,
attributes: ["id", "comment_text", "post_id", "user_id", "c... |
module.exports={A:{A:{"1":"A B","2":"N F E D fB"},B:{"1":"C M R H I J K QB L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G T N F E D A B C M R H I J K U V W X Y Z a b c d e f g h i j k l m n o p q r s t u O w x y z PB EB BB CB AB S GB Q IB JB KB LB MB NB OB","2":"oB FB lB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T N F E D A B C M R H I J K ... |
import { takeEvery, select, put, call, all } from 'redux-saga/effects';
import * as topojson from 'topojson-client';
import { csv2geojson } from 'csv2geojson';
import Papa from 'papaparse';
import 'whatwg-fetch';
import 'url-search-params-polyfill';
import { MAX_LOAD_ATTEMPTS, RESOURCES } from 'config';
import quasiE... |
//特派员介绍
function tepaiyuan_c1(){
//如已经load将不再、load页面、如果有后台操作则else进行后台操作
if($(".centerBox-right-c1 button:last").text()!=$(".tepaiyuan_c1").text()){
$(".centerBox-right-c2").empty();
$(".centerBox-right-c2").load("test1.html",function(){
$(".centerBox-right-c1 button:last").text($(".tepaiyuan_c1").text());//连动
... |
import tokenTypes from './tokenTypes';
const INLINE_MAX_LENGTH = 50;
/**
* Bookkeeper for inline blocks.
*
* Inline blocks are parenthized expressions that are shorter than INLINE_MAX_LENGTH.
* These blocks are formatted on a single line, unlike longer parenthized
* expressions where open-parenthesis causes newl... |
import babel from 'rollup-plugin-babel'
import { terser } from 'rollup-plugin-terser'
import filesize from 'rollup-plugin-filesize'
import babelConfig from './babel.config.json'
import babelCompatConfig from './babel.config.compat.json'
import pkg from './package.json'
const project = 'react-app-kit'
const umdOutput... |
Users.updatedunnhumby = function (userId, dunnhumby) {
Users.update(userId, {$set: {isdunnhumby: dunnhumby}});
};
AccountsTemplates.removeField('password');
AccountsTemplates.addField({
_id: 'password',
type: 'password',
placeholder: {
signUp: "At least eight characters"
},
required: true... |
import pkg from './package.json';
import config from './rollup.config';
export default {
...config,
input: 'src/sample-app/index.tsx',
output: [
{
file: pkg.main,
format: 'iife',
sourcemap: true,
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
},
],
... |
/**
* Check whether a property is a custom one
*/
export function isCustomProperty (property /*: string */) /*: boolean */ {
return property.slice(0, 2) === '--'
} |
/*jshint expr:true */
'use strict';
var Crawler = require('../lib/crawler');
var expect = require('chai').expect;
var nock = require('nock');
// var sinon = require('sinon');
var httpTarget = 'http://target.com';
var c;
var scope;
describe('Cache features tests', function() {
describe('Skip Duplicate active', functi... |
var searchData=
[
['zoom_0',['zoom',['../class_image_utils_1_1_shortcut_zoomer.html#a3d3567973d10406b7534fa6fdc9c7c8a',1,'ImageUtils::ShortcutZoomer::zoom()'],['../class_viewer_zoomer.html#a05af59a60ab398b997e2949e64f60a54',1,'ViewerZoomer::zoom()']]],
['zoomqt_1',['zoomQt',['../class_image_viewer.html#a4b00ca265e0... |
import { useOkapiKy } from '@folio/stripes/core';
import { useQuery } from 'react-query';
import { useProfileHandlerWithCallout } from './useProfileHandlerWithCallout';
export const useJobProfileData = ({
onSubmit, onCancel, match, errorMessageId, successMessageId,
}) => {
const ky = useOkapiKy();
const { data:... |
/*
* Copyright (C) 2013 salesforce.com, inc.
*
* 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 applicable ... |
#!/usr/bin/env node
// cwd 目录
process.argv.push('--cwd')
process.argv.push(process.cwd())
// gulpfile.js 目录
process.argv.push('--gulpfile')
process.argv.push(require.resolve('..'))
// 运行 CLI 程序
require('gulp/bin/gulp') |
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.vueIonicons = factory());
}(this, (function () { 'use strict';
var A_ROTATE = 'rotate';
var A_BEAT = 'beat';
var A... |
import LWElement from './../../../lib/lw-element.js';
import ast from './ast.js';
customElements.define('leanweb-app-sections-commands',
class extends LWElement { // LWElement extends HTMLElement
constructor() {
super(ast);
}
// derived from LWElement
// domReady() {
// c... |
'use strict';
const path = require('path');
const fs = require('fs');
const url = require('url');
// Make sure any symlinks in the project folder are resolved:
// https://github.com/facebookincubator/create-react-app/issues/637
const appDirectory = fs.realpathSync(process.cwd());
const resolveApp = relativePath => pa... |
file:/home/charlike/dev/glob-fs/fixtures/a/l0.js |
import {
alias as emberAlias,
and as emberAnd,
bool as emberBool,
collect as emberCollect,
deprecatingAlias as emberDeprecatingAlias,
empty as emberEmpty,
equal as emberEqual,
filter as emberFilter,
filterBy as emberFilterBy,
gt as emberGt,
gte as emberGte,
intersect as emberIntersect,
lt as e... |
import { visit } from '@ember/test-helpers';
import { findTab } from '../helpers/finders';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
module('Acceptance | basics', function (hooks) {
setupApplicationTest(hooks);
test('should select the first tab by default', async fu... |
import NativeObject from '../NativeObject';
import Widget from '../Widget';
import {types} from '../property-types';
export default class Video extends Widget {
get _nativeType() {
return 'tabris.Video';
}
_listen(name, listening) {
if (name === 'stateChanged' || name === 'speedChanged') {
this._... |
//# sourceMappingURL=main.6f566a7173c216c519c6.bundle.js.map |
const mongoose = require('mongoose');
const bcrypt = require('bcryptjs');
const config = require('../config/database');
// User schema
const UserSchema = mongoose.Schema({
userDisplayName: {
type: String,
required: true
},
email: {
type: String,
required: true
},
password: {
type: Strin... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.