Merge remote-tracking branch 'origin/staging' into staging
This commit is contained in:
@ -126,7 +126,7 @@ gulp.task('serve', function(cb) {
|
|||||||
script: paths.server,
|
script: paths.server,
|
||||||
ext: '.js .json',
|
ext: '.js .json',
|
||||||
ignore: paths.serverIgnore,
|
ignore: paths.serverIgnore,
|
||||||
exec: './node_modules/.bin/babel-node',
|
exec: path.join(__dirname, 'node_modules/.bin/babel-node'),
|
||||||
env: {
|
env: {
|
||||||
'NODE_ENV': 'development',
|
'NODE_ENV': 'development',
|
||||||
'DEBUG': process.env.DEBUG || 'freecc:*'
|
'DEBUG': process.env.DEBUG || 'freecc:*'
|
||||||
|
@ -1464,7 +1464,9 @@
|
|||||||
],
|
],
|
||||||
"tests": [
|
"tests": [
|
||||||
"assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], 'sex'), true, 'should return true if predicate returns truthy for all elements in the collection');",
|
"assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], 'sex'), true, 'should return true if predicate returns truthy for all elements in the collection');",
|
||||||
"assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');"
|
"assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');",
|
||||||
|
"assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'female'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');"
|
||||||
|
|
||||||
],
|
],
|
||||||
"MDNlinks": [
|
"MDNlinks": [
|
||||||
"Object.hasOwnProperty()",
|
"Object.hasOwnProperty()",
|
||||||
|
@ -68,6 +68,7 @@
|
|||||||
"Once you're in our chat room, introduce yourself by saying : \"Hello world!\".",
|
"Once you're in our chat room, introduce yourself by saying : \"Hello world!\".",
|
||||||
"Tell your fellow campers how you found Free Code Camp. Also tell us why you want to learn to code.",
|
"Tell your fellow campers how you found Free Code Camp. Also tell us why you want to learn to code.",
|
||||||
"We have a busy chat room, so be sure to configure your notification settings in the top right corner.",
|
"We have a busy chat room, so be sure to configure your notification settings in the top right corner.",
|
||||||
|
"Also Join our help chat room: <a href='https://gitter.im/FreeCodeCamp/help' target='_blank'>https://gitter.im/FreeCodeCamp/help</a>, where you can get help with our challenges in real time.",
|
||||||
"Keep the chat room open while you work through the other challenges. That way you ask for help if you get stuck on a challenge. You can also socialize when you feel like taking a break.",
|
"Keep the chat room open while you work through the other challenges. That way you ask for help if you get stuck on a challenge. You can also socialize when you feel like taking a break.",
|
||||||
"You can also download a desktop or mobile chat application here: <a href='https://gitter.im/apps' target='_blank'>https://gitter.im/apps</a>",
|
"You can also download a desktop or mobile chat application here: <a href='https://gitter.im/apps' target='_blank'>https://gitter.im/apps</a>",
|
||||||
"You can also access this chat room by clicking the \"Chat\" button in the upper right hand corner.",
|
"You can also access this chat room by clicking the \"Chat\" button in the upper right hand corner.",
|
||||||
|
Reference in New Issue
Block a user