js
JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
Here are 21,805 public repositories matching this topic...
-
Updated
Feb 3, 2021
-
Updated
Feb 5, 2021 - JavaScript
-
Updated
Feb 3, 2021 - TypeScript
-
Updated
Feb 5, 2021 - JavaScript
I've ran into this issue for a couple hours and I ended up editing the dist library adding two new functions called fetchVideo and bufferToVideo that works pretty much like the fetchImage and bufferToImage functions.
I'll leave it here to help somebody else with the same issue and in case someone wants to include it on future releases.
face-api.js
...
exports.fetchVideo = fetc
-
Updated
Jan 20, 2021 - TypeScript
-
Updated
Oct 6, 2020 - Java
-
Updated
Feb 2, 2021 - JavaScript
Currently, when entering epic mode the README is frozen in the last level of the tower. When you're trying to fine-tune the score for a level other than the last one, it would be helpful if we had the README for that level available. The proposal is that when entering epic mode, the README is updated with all levels, one following the other.
Example:
# Starbolt - beginnerVersion
Chakra-1.11.24
Execution step
./ChakraCore/out/Release/ch testcase.js
Testcase
target = Function();
handler = {
get: function() {
print('Run here');
}
};
var p= new Proxy(target, handler);
new p;Output
Expected behavior
Run here
Description
When ex
-
Updated
Apr 19, 2019 - JavaScript
-
Updated
Jan 9, 2021 - HTML
-
Updated
Feb 5, 2021 - JavaScript
Port tests from Got
Got has a very good coverage test-wise. Would be nice to port relevant tests that we're missing over to Ky.
Note: Not for https://github.com/sindresorhus/ky/blob/master/test/browser.js, but for everything else.
-
Updated
Feb 5, 2021 - JavaScript
System information
- node version: v10.13.0
- npm or yarn version: 6.4.1
- OS/version/architecture: gLinux 64-bit (Google-internal, like Debian Testing)
- Applicable nodegit version: v0.23.0 built from source
https://www.nodegit.org/api/tree/ has an example of how to use tree.walk(), but it doesn't mention a critical detail, which is mentioned in an example:
https://github.com
When using asciidoctot.js with object-hash, object-hash will throw error during hashing Object.__proto__.constructor, because it finds the $$base_module property on Object.__proto__.constructor, then try to hash it.
The $$base_module property on Object.__proto__.constructor is enumerable:
-
Updated
Jan 14, 2021 - TypeScript
-
Updated
Jan 19, 2021 - JavaScript
-
Updated
Dec 30, 2020 - JavaScript
-
Updated
Jan 27, 2021 - JavaScript
-
Updated
Jan 5, 2021 - JavaScript
-
Updated
Jan 29, 2021 - Objective-C
Created by Brendan Eich
Released December 4, 1995
- Website
- developer.mozilla.org/en-US/docs/Web/JavaScript
- Wikipedia
- Wikipedia

pipelineshould immediately fail withERR_STREAM_DESTROYEDwhen any of the streams have already been destroyed.Readablemight need a little extra consideration since it's possible to read the data after being destroyed. Should maybe check_readableState.erroredand/or_readableState.ended.Refs: nodejs/node#29227 (comment)