The following debugging information was generated by Atom Beautify
on Fri May 26 2017 17:26:51 GMT+0100 (BST)
.
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
/* This is the value that is being parsed. It is defined here because the `reviver` function need the access to it. */ | |
const body = '[{"id":1110746394641760256,"name":"fc1"}]'; | |
/** | |
* The reviver function passed as a second argument to the JSON.parse() function. | |
* It transforms the numbers that are above the max integer value into BigInt. | |
* | |
* Note 1, BigInt is not the same as a Number. In fact you cannot perform operations on the thwo types. | |
* Note 2, This won't work when the stringified object has multiple number values that are similar | |
* (the first 10+ digits are the same, depnding on the value of the `Number.MAX_SAFE_INTEGE`). |
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
const nodegit = require('nodegit'); | |
const path = require('path'); | |
const fs = require('fs-extra'); | |
const openpgp = require('openpgp'); | |
const fileName = 'newfile.txt'; | |
const fileContent = 'hello world'; | |
const directoryName = 'salad/toast/strangerinastrangeland/theresnowaythisexists'; | |
/** | |
* This example creates a certain file `newfile.txt`, adds it to the git |
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
import { fixture } from '@open-wc/testing'; | |
/* global Mocha, axs */ | |
const Test = Mocha.Test; | |
const Suite = Mocha.Suite; | |
export default async (id, html, ignoredRules) => { | |
const element = await fixture(html); | |
const mInstancwe = new Mocha(); | |
const suiteInstance = Suite.create(mocha.suite, 'A11y Audit: ' + id); | |
const axsConfig = new axs.AuditConfiguration(); |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | |
<title>Issue reproduction</title> | |
<script src="../../webcomponentsjs/webcomponents-loader.js"></script> | |
<style> | |
html, | |
body { |
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
const builder = require('api-console-builder'); | |
builder({ | |
dest: 'build', | |
// noOptimization: true, | |
embedded: true, | |
verbose: true, | |
raml: 'api.raml' | |
}) | |
.then(() => console.log('Build complete')) |
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
const builder = require('api-console-builder'); | |
builder({ | |
tagName: '5.0.0-preview', | |
embedded: true, | |
themeFile: './my-theme.html', | |
destination: 'console-bundle' | |
}) | |
.then(() => console.log('Build complete <3')) | |
.catch((cause) => console.log('Build error <\\3', cause.message)); |
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
<style is="custom-style"> | |
:root { | |
--arc-color-primary: pink; /* overrides: --primary-color: var(--arc-color-primary, #00a2df); */ | |
--arc-font-family: Verdana; /* overrides: --arc-font-common-base and therefore all fonts definitions */ | |
--arc-request-panel: { | |
/* Applied to whole reqiuest panel, after applying default styling that can be changed here */ | |
margin-bottom: 120px; | |
} | |
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
I, Pawel Psztyc, have read and do accept the MuleSoft Contributor Agreement | |
at http://www.mulesoft.org/legal/contributor-agreement.html | |
Accepted on Tue May 30 2017 14:42:45 GMT+0100 (BST) |
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
var importLocation = ''; | |
(function() { | |
var url; | |
if (window.currentImport && window.currentImport.URL) { | |
url = window.currentImport.URL; | |
if (window.currentImport._URL) { | |
url = window.currentImport._URL; | |
} | |
} else if (window.currentImport._URL) { | |
url = window.currentImport._URL; |
NewerOlder