-
Updated
Nov 14, 2020 - JavaScript
promise
Here are 2,126 public repositories matching this topic...
-
Updated
Nov 6, 2020 - JavaScript
Summary of Problem
Not able to open port with stopbits as 1.5
I am currently building a desktop client using electron, where the COM port receives data correctly for values: baudRate: 2400, dataBits: 7, stopBits: 1.5, parity: 'none'
I found from the node-serialport documentation, stopBits Must be one of these: 1 or 2. But, should 1.5 be supported as well? especially for old & slow
-
Updated
Nov 12, 2020
-
Updated
Mar 3, 2019
-
Updated
Nov 10, 2020 - TypeScript
-
Updated
Nov 9, 2020 - JavaScript
From what I can tell, the ApiResponse
objects can never have an undefined config.
Config is defined as optional here:
https://github.com/infinitered/apisauce/blob/master/apisauce.d.ts#L44
But is required here:
https://github.com/infinitered/apisauce/blob/master/lib/apisauce.ts#L200
-
Updated
Oct 30, 2020 - Java
-
Updated
Oct 21, 2020 - TypeScript
URL : https://azu.github.io/promises-book/#race-delay-timeout
delay-race-cancel-play.js
copyOwnFromとTimeoutErrorの定義が重複している
<template>
<promised :promise="confirmPromise">
<template v-slot:pending="">
Pending...
</template>
<template v-slot="">
Success
</template>
<template v-slot:rejected="">
Failed
</template>
</promised>
</template>
<script>
import { Promised } from 'vue-promised'
export default {
components: {
Promised,
},
-
Updated
Oct 9, 2020 - JavaScript
-
Updated
Oct 17, 2020 - JavaScript
-
Updated
Aug 18, 2020 - JavaScript
-
Updated
May 15, 2020 - Swift
-
Updated
May 11, 2020 - C#
-
Updated
Oct 27, 2020 - JavaScript
-
Updated
Oct 4, 2020 - JavaScript
-
Updated
Jun 9, 2020 - JavaScript
-
Updated
Sep 7, 2020 - JavaScript
Improve this page
Add a description, image, and links to the promise topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the promise topic, visit your repo's landing page and select "manage topics."
node-fetch
currently completely ignoringContent-Length
header while consuming response.Fetch specification about handling
Content-Length
on server response says almost nothing:https://fetch.spec.whatwg.org/#concept-http-network-fetch
(see whatwg/fetch#67)On other hand, we have a
fetch-node
specific extension to limit the size of the response.My prop