-
Updated
Sep 3, 2020 - JavaScript
promise
Here are 2,085 public repositories matching this topic...
-
Updated
Aug 7, 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
Apr 19, 2020
-
Updated
Mar 3, 2019
-
Updated
Sep 3, 2020 - TypeScript
-
Updated
Aug 21, 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
Jul 19, 2019 - Java
URL : https://azu.github.io/promises-book/#race-delay-timeout
delay-race-cancel-play.js
copyOwnFromとTimeoutErrorの定義が重複している
-
Updated
Aug 21, 2020 - TypeScript
-
Updated
Sep 4, 2020 - JavaScript
<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
Aug 11, 2020 - JavaScript
-
Updated
Aug 18, 2020 - JavaScript
-
Updated
May 15, 2020 - Swift
-
Updated
May 11, 2020 - C#
-
Updated
Aug 30, 2020 - JavaScript
-
Updated
Aug 11, 2020 - JavaScript
-
Updated
Jun 9, 2020 - JavaScript
-
Updated
Sep 1, 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-fetchcurrently completely ignoringContent-Lengthheader while consuming response.Fetch specification about handling
Content-Lengthon 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-nodespecific extension to limit the size of the response.My prop