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 abc(a, b, c,) {} // <- OK | |
function abc( | |
a, | |
b, | |
c, // <- OK | |
) { | |
// some code | |
} | |
abc("","","",); // <- OK |
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
'abc'.padEnd(10); // "abc " | |
'abc'.padEnd(10, "foo"); // "abcfoofoof" | |
'abc'.padEnd(6, "123456"); // "abc123" | |
'abc'.padEnd(1); // "abc" |
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
'abc'.padStart(10); // " abc" | |
'abc'.padStart(10, "foo"); // "foofoofabc" | |
'abc'.padStart(6,"123465"); // "123abc" | |
'abc'.padStart(8, "0"); // "00000abc" | |
'abc'.padStart(1); // "abc" |
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
const translations = { | |
en: { | |
home: "Home", | |
greeting: "Welcome", | |
}, | |
fr: { | |
home: "Accueil", | |
greeting: "Bienvenue", | |
}, | |
}; |
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
const translations = { | |
en: { | |
home: "Home", | |
greeting: "Welcome", | |
}, | |
fr: { | |
home: "Accueil", | |
greeting: "Bienvenue", | |
}, | |
}; |
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
image: Visual Studio 2017 | |
environment: | |
nodejs_version: "6" | |
platform: | |
- x64 | |
install: | |
- ps: Install-Product node $env:nodejs_version |
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
version: 2 | |
jobs: | |
build: | |
working_directory: ~/app-name | |
docker: | |
- image: circleci/node:6-browsers | |
steps: | |
- checkout | |
- restore_cache: | |
key: dependency-cache-{{ checksum "yarn.lock" }} |
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
Thanks to 87 contributors who put [201 commits](https://github.com/facebook/react-native/compare/0.33-stable...0.34-stable) into this release! | |
Special thanks to @charpeni for writing these release notes! | |
## General | |
### Bugfixes | |
- Fix handling of bad utf16 passed out of JS (ccdc57d) - @cjhopman | |
- Incremental: Fix require of performanceNow (b01feb4) - @rigdern |
NewerOlder