[sadfad.com](hey there]
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
{ "firstMessage": "publicado el 02/09/2021", "secondMessage": "01/10/2021 a las 11:00 hs."} |
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
(function () { | |
async function foo() { | |
return await bar(); | |
} | |
async function bar() { | |
await Promise.resolve(); | |
throw new Error('oh no'); | |
} | |
foo().catch(error => console.log(error.stack)); | |
})() |
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.write = async event => { | |
console.log('Starting write function'); | |
if(!event.body) { | |
return formatResponse(400, { message: 'body is missing' }); | |
} | |
const body = JSON.parse(event.body); | |
if(!body.cells || !Array.isArray(body.cells)) { | |
return formatResponse(400, { message: '"cells" should be an array' }) |
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
openapi: 3.0.1 | |
info: | |
title: Job Seekers | |
contact: | |
email: [email protected] | |
license: | |
name: Apache 2.0 | |
url: http://www.apache.org/licenses/LICENSE-2.0.html | |
version: 1.0.0 | |
servers: |
Esta es una guía para colaborar con el equipo de traducción de Node.js. Para dividirse tareas utilizaremos esta spreadsheet dónde cada vez que empiecen con un archivo dentro de Crowdin deben agregar su usuario de GitHub al costado.
Pasos a seguir para utilizar Crowdin:
- Crear una cuenta
- Abrir la página del proyecto
- Dentro de la lista de idiomas buscar Spanish y seleccionarlo
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
Paste your XML code.. |
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
#!/usr/bin/env node | |
const fs = require('fs'); | |
const split2 = require('split2'); | |
let port = Number(process.env.START_PORT); | |
const list =[]; | |
process.stdin.pipe(split2()) | |
.on('data', p => list.push(p)) |
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
💻✨💻✨💻💻💻✨💻✨✨✨💻✨✨✨✨💻✨✨ | |
💻✨💻✨💻✨✨✨💻✨✨✨💻✨✨✨💻✨💻✨ | |
💻💻💻✨💻💻✨✨💻✨✨✨💻✨✨✨💻✨💻✨ | |
💻✨💻✨💻✨✨✨💻✨✨✨💻✨✨✨💻✨💻✨ | |
💻✨💻✨💻💻💻✨💻💻💻✨💻💻💻✨✨💻✨✨ |
console.log(Joi.validate('2015-02-21T00:52:43.822Z', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00:52:43.822', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00:52:43Z', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00:52:43', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00:52Z', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00:52', Joi.date().iso())); // error:null
console.log(Joi.validate('2015-02-21T00Z', Joi.date().iso())); // "value" must be a valid ISO 8601 date
NewerOlder