This file contains hidden or 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 { isAndroid } from '@nativescript/core'; | |
| class TypeMismatchError extends Error {} | |
| class QuotaExceededError extends Error {} | |
| /** | |
| * @param {Int8Array|Uint8Array|Int16Array|Uint16Array|Int32Array|Uint32Array|Uint8ClampedArray} array | |
| */ | |
| function getRandomValues(array) { | |
| if ( |
This file contains hidden or 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 { Directive, ElementRef, Input, OnInit, OnChanges } from '@angular/core'; | |
| import { Label } from '@nativescript/core'; | |
| @Directive({ selector: 'Label[maxLines]' }) | |
| export class LabelMaxLinesDirective implements OnInit, OnChanges { | |
| constructor(private el: ElementRef) {} | |
| @Input() public maxLines = 1; | |
| public get nativeView(): Label { |
This file contains hidden or 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
| git clone https://gitlab.archlinux.org/archlinux/packaging/packages/discord.git /tmp/discord | |
| cd /tmp/discord | |
| PACMAN=yay makepkg -si --skipinteg |
OlderNewer