Clicking the button below will open stackblitz.com with the content of this snippet 🎉.
This file has been truncated, but you can view the full file.
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
3 4 0 1 2 2 3 0 2 5 4 1 5 3 0 3 4 3 0 1 4 4 1 0 4 5 1 2 4 4 3 3 3 0 1 3 3 0 1 1 1 0 3 1 4 4 4 4 1 5 4 3 4 2 5 2 2 4 2 2 5 2 2 4 1 0 3 0 2 3 3 1 5 2 1 1 5 0 5 3 3 3 2 2 3 3 1 2 0 1 4 2 2 0 4 3 4 5 4 3 2 4 2 4 2 1 2 4 0 3 3 1 3 3 5 0 1 1 1 3 3 3 5 3 3 1 1 3 2 2 1 2 1 2 3 1 2 3 3 4 2 1 2 4 5 3 4 2 1 5 2 4 3 5 1 3 4 1 0 0 4 1 2 5 1 2 4 3 1 5 1 1 2 2 3 0 2 2 5 3 3 2 3 4 4 2 3 4 2 4 1 2 3 0 4 4 5 3 4 4 5 2 3 2 3 2 3 3 0 4 3 1 3 2 4 0 3 3 4 3 1 3 2 1 5 4 2 1 3 3 4 1 1 1 2 3 0 5 3 2 1 3 5 1 0 3 4 0 3 2 5 5 1 0 4 0 5 5 5 3 2 2 5 2 2 4 4 2 1 1 1 4 4 1 2 3 4 1 2 3 0 4 0 1 3 1 2 1 1 0 4 2 2 1 5 3 1 2 3 0 5 4 1 4 3 3 0 1 0 2 2 2 4 4 1 1 4 3 3 4 3 4 3 3 1 4 5 3 0 5 3 4 5 4 2 2 4 4 4 0 2 3 1 2 2 4 3 4 2 2 0 2 1 3 1 3 2 3 5 3 0 0 3 3 3 3 1 2 3 2 1 4 2 4 1 4 3 4 0 5 5 2 2 4 1 5 1 1 3 5 4 3 1 3 4 3 1 5 2 4 2 1 1 1 0 0 5 1 3 2 3 0 5 4 1 2 0 4 1 1 4 2 2 3 4 2 3 1 1 5 0 2 4 4 2 1 1 2 4 3 1 1 2 2 3 3 2 0 2 4 0 4 4 3 2 4 2 3 2 3 3 2 4 5 2 5 3 3 4 2 4 3 1 0 3 2 4 3 5 5 1 5 2 2 1 3 2 2 5 1 4 1 3 1 2 5 1 4 0 0 | |
2 3 0 4 0 0 3 3 3 5 5 5 |
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
/* -------------------------------------------------------------------------------------------- | |
* Copyright (c) Microsoft Corporation. All rights reserved. | |
* Licensed under the MIT License. See License.txt in the project root for license information. | |
* ------------------------------------------------------------------------------------------ */ | |
'use strict'; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
/** | |
* The Position namespace provides helper functions to work with | |
* [Position](#Position) literals. | |
*/ |
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 { Injectable } from '@angular/core'; | |
import { CompletionItemProvider } from 'ngx-monaco'; | |
interface PropertyValue { | |
name: string; | |
description?: string; | |
} | |
interface Property { | |
name: string; |
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'; | |
const transform = pkg => { | |
pkg.license = 'MIT'; | |
return pkg; | |
}; | |
exports.transformations = [ | |
{ | |
transform, |
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
module.exports = (message, queueName, options) => { | |
options = Object.assign({ | |
awsAccountId: process.env.AWS_ACCOUNT_ID | |
}, options); | |
if (!message) { | |
return Promise.reject(new TypeError('Please provide a message')); | |
} | |
// All the rest |
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
class FooError extends Error { | |
constructor(message) { | |
super(message); | |
} | |
} | |
console.log(FooError.name); |
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
declare module "concat"; |
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 * as concat from 'concat'; | |
console.log(concat('foo', 5)); |
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 * as concat from 'concat'; | |
console.log(concat('foo', 'bar')); |
NewerOlder