Skip to content

Instantly share code, notes, and snippets.

View Hyperxq's full-sized avatar
:octocat:
Working from home

Daniel Ramírez Barrientos Hyperxq

:octocat:
Working from home
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.pbuilder.dev/",
"definitions": {
"Dictionary": {
"type": "object",
"additionalProperties": true
},
"SchematicSettings": {
"type": "object",
@Hyperxq
Hyperxq / request.queue.ts
Created March 5, 2021 05:31
RequestQueue
import { HttpClient } from '@angular/common/http';
import { EventEmitter, Injectable } from '@angular/core';
import { Observable, Subject } from 'rxjs';
export enum ETypeQueque {
PROMISE = 1,
OBSERVABLE
}
export interface IRequest {
<div id="componentA">
<h1>Component A</h1>
</div>
function solution(string) {
return string.split(/(?=[A-Z])/).join(' ');
}