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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "launch tests for current file", | |
"type": "shell", | |
"group": "test", | |
"command": "nx test ${input:packageName} --test-file ${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
#!/bin/ruby | |
# We define super digit of an integer X using the following rules. | |
# Given an integer, we need to find the super digit of the integer. | |
# - If X has only 1 digit, then its super digit is X. | |
# - Otherwise, the super digit of X is equal to the super digit of the sum of the digits of X. | |
# For example, the super digit of 9875 will be calculated as: | |
# super_digit(9875) 9+8+7+5 = 29 | |
# super_digit(29) 2 + 9 = 11 |
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
<script> | |
/*! drag-drop-polyfill 2.0.0-beta.2 | Copyright (c) 2016 Tim Ruffles | BSD 2 License */ | |
var DEBUG,DragDropPolyfill;!function(a){function b(){var a={dragEvents:"ondragstart"in document.documentElement,draggable:"draggable"in document.documentElement,touchEvents:"ontouchstart"in document.documentElement,userAgentSupportingNativeDnD:void 0},b=!!window.chrome||/chrome/i.test(navigator.userAgent);return a.userAgentSupportingNativeDnD=!(/iPad|iPhone|iPod|Android/.test(navigator.userAgent)||b&&a.touchEvents),DEBUG&&Object.keys(a).forEach(function(a){}),a}function c(){var a=!1;try{var b=Object.defineProperty({},"passive",{get:function(){a=!0}});window.addEventListener("test",null,b)}catch(a){}return a}function d(a){if(a&&Object.keys(a).forEach(function(b){x[b]=a[b]}),!x.forceApply){var d=b();if(d.userAgentSupportingNativeDnD&&d.draggable&&d.dragEvents)return}w=c(),h("touchstart",e,!1)}function e(a){if(!y){var b=f(a);if(b)try{y=new G(a,x,b,g)}catch(b){throw g(x,a,3),b}}}function f(a){var b=a.target;do if(b.dr |