@@ -34,10 +34,10 @@ The documentation is built and fully automated using [verb][], including [table
3434 * [ modules-commonjs] ( #modules-commonjs )
3535 * [ modules-es2015] ( #modules-es2015 )
3636 * [ objects] ( #objects )
37+ * [ returns] ( #returns )
3738 * [ testing] ( #testing )
3839 * [ timers] ( #timers )
3940 * [ types] ( #types )
40- * [ returns] ( #returns )
4141- [ Related] ( #related )
4242- [ Contributing] ( #contributing )
4343- [ Building docs] ( #building-docs )
@@ -95,7 +95,7 @@ ${1:assert}.ifError(${2:err})${0}
9595${1 : assert}.throws (${2 : actual}, ${3 : expected})${0 }
9696```
9797
98- ** [ back to top] ( #table-of-contents ) **
98+ ** [ back to top] ( #readme ) **
9999
100100### async
101101> All [ async] ( ./snippets/async.cson ) snippets
@@ -138,7 +138,7 @@ ${1:promise}.catch((${2:err}) => {${0}})
138138.catch (($ {1 : err}) => {${0 }})
139139```
140140
141- ** [ back to top] ( #table-of-contents ) **
141+ ** [ back to top] ( #readme ) **
142142
143143### classes
144144> All [ classes] ( ./snippets/classes.cson ) snippets
@@ -191,7 +191,7 @@ function ${1:ClassName} (${2:args}) {
191191}
192192```
193193
194- ** [ back to top] ( #table-of-contents ) **
194+ ** [ back to top] ( #readme ) **
195195
196196### console
197197> All [ console] ( ./snippets/console.cson ) snippets
@@ -220,7 +220,7 @@ console.warn(${0})
220220console .dir (${0 })
221221```
222222
223- ** [ back to top] ( #table-of-contents ) **
223+ ** [ back to top] ( #readme ) **
224224
225225### control-flow
226226> All [ control-flow] ( ./snippets/control-flow.cson ) snippets
@@ -291,7 +291,7 @@ try {
291291}
292292```
293293
294- ** [ back to top] ( #table-of-contents ) **
294+ ** [ back to top] ( #readme ) **
295295
296296### declarations
297297> All [ declarations] ( ./snippets/declarations.cson ) snippets
@@ -372,7 +372,7 @@ const ${1:name} = [
372372]
373373```
374374
375- ** [ back to top] ( #table-of-contents ) **
375+ ** [ back to top] ( #readme ) **
376376
377377### events
378378> All [ events] ( ./snippets/events.cson ) snippets
@@ -413,7 +413,7 @@ ${1:emitter}.emit('${2:event}', ${3:args})
413413.emit (' ${1:event}' , ${2 : args})
414414```
415415
416- ** [ back to top] ( #table-of-contents ) **
416+ ** [ back to top] ( #readme ) **
417417
418418### functions
419419> All [ functions] ( ./snippets/functions.cson ) snippets
@@ -492,7 +492,7 @@ ${1:fn}.call(${2:this}, ${3:args})
492492${1 : fn}.bind (${2 : this }, ${3 : args})
493493```
494494
495- ** [ back to top] ( #table-of-contents ) **
495+ ** [ back to top] ( #readme ) **
496496
497497### iterables
498498> All [ iterables] ( ./snippets/iterables.cson ) snippets
@@ -585,7 +585,7 @@ ${1:iterable}.some(${2:iterator})
585585.some (${1 : iterator})
586586```
587587
588- ** [ back to top] ( #table-of-contents ) **
588+ ** [ back to top] ( #readme ) **
589589
590590### json
591591> All [ json] ( ./snippets/json.cson ) snippets
@@ -608,7 +608,7 @@ ${1:iterable}.some(${2:iterator})
608608" ${1:key}" : true
609609```
610610
611- ** [ back to top] ( #table-of-contents ) **
611+ ** [ back to top] ( #readme ) **
612612
613613### loops
614614> All [ loops] ( ./snippets/loops.cson ) snippets
@@ -659,7 +659,7 @@ while (i < len) {
659659}
660660```
661661
662- ** [ back to top] ( #table-of-contents ) **
662+ ** [ back to top] ( #readme ) **
663663
664664### misc
665665> All [ misc] ( ./snippets/misc.cson ) snippets
@@ -739,7 +739,7 @@ function fixture () {
739739}${0 }
740740```
741741
742- ** [ back to top] ( #table-of-contents ) **
742+ ** [ back to top] ( #readme ) **
743743
744744### modules-commonjs
745745> All [ modules-commonjs] ( ./snippets/modules-commonjs.cson ) snippets
@@ -780,7 +780,7 @@ module.exports = ${1:value}
780780module .exports = exports [' default' ] = ${1 : value}
781781```
782782
783- ** [ back to top] ( #table-of-contents ) **
783+ ** [ back to top] ( #readme ) **
784784
785785### modules-es2015
786786> All [ modules-es2015] ( ./snippets/modules-es2015.cson ) snippets
@@ -815,7 +815,7 @@ import ${2:*} as ${3:name} from '${1:pkg}'${4}
815815import { $2 } from ' ${1:pkg}' ${3}
816816```
817817
818- ** [ back to top] ( #table-of-contents ) **
818+ ** [ back to top] ( #readme ) **
819819
820820### objects
821821> All [ objects] ( ./snippets/objects.cson ) snippets
@@ -858,7 +858,62 @@ Object.assign(${1:dest}, ${2:source})${0}
858858Object .keys (${1 : obj})${0 }
859859```
860860
861- ** [ back to top] ( #table-of-contents ) **
861+ ** [ back to top] ( #readme ) **
862+
863+ ### returns
864+ > All [ returns] ( ./snippets/returns.cson ) snippets
865+
866+ #### ` r⇥ ` return
867+
868+ ``` js
869+ return ${0 }
870+ ```
871+
872+ #### ` rth⇥ ` return this
873+
874+ ``` js
875+ return this
876+ ```
877+
878+ #### ` rn⇥ ` return null
879+
880+ ``` js
881+ return null
882+ ```
883+
884+ #### ` rt⇥ ` return true
885+
886+ ``` js
887+ return true
888+ ```
889+
890+ #### ` rf⇥ ` return false
891+
892+ ``` js
893+ return false
894+ ```
895+
896+ #### ` r0⇥ ` return 0
897+
898+ ``` js
899+ return 0
900+ ```
901+
902+ #### ` r-1⇥ ` return -1
903+
904+ ``` js
905+ return - 1
906+ ```
907+
908+ #### ` rp⇥ ` return promise
909+
910+ ``` js
911+ return new Promise ((resolve$ {1 : , reject}) => {
912+ ${0 }
913+ })
914+ ```
915+
916+ ** [ back to top] ( #readme ) **
862917
863918### testing
864919> All [ testing] ( ./snippets/testing.cson ) snippets
@@ -887,7 +942,7 @@ ${1:test}('${2:description}', (${3:t}) => {
887942})
888943```
889944
890- ** [ back to top] ( #table-of-contents ) **
945+ ** [ back to top] ( #readme ) **
891946
892947### timers
893948> All [ timers] ( ./snippets/timers.cson ) snippets
@@ -924,7 +979,7 @@ setImmediate(() => {
924979})
925980```
926981
927- ** [ back to top] ( #table-of-contents ) **
982+ ** [ back to top] ( #readme ) **
928983
929984### types
930985> All [ types] ( ./snippets/types.cson ) snippets
@@ -1007,62 +1062,7 @@ ${1:source} instanceof ${2:Object}
10071062Array .isArray (${1 : source})
10081063```
10091064
1010- ** [ back to top] ( #table-of-contents ) **
1011-
1012- ### returns
1013- > All [ returns] ( ./snippets/returns.cson ) snippets
1014-
1015- #### ` r⇥ ` return
1016-
1017- ``` js
1018- return ${0 }
1019- ```
1020-
1021- #### ` rth⇥ ` return this
1022-
1023- ``` js
1024- return this
1025- ```
1026-
1027- #### ` rn⇥ ` return null
1028-
1029- ``` js
1030- return null
1031- ```
1032-
1033- #### ` rt⇥ ` return true
1034-
1035- ``` js
1036- return true
1037- ```
1038-
1039- #### ` rf⇥ ` return false
1040-
1041- ``` js
1042- return false
1043- ```
1044-
1045- #### ` r0⇥ ` return 0
1046-
1047- ``` js
1048- return 0
1049- ```
1050-
1051- #### ` r-1⇥ ` return -1
1052-
1053- ``` js
1054- return - 1
1055- ```
1056-
1057- #### ` rp⇥ ` return promise
1058-
1059- ``` js
1060- return new Promise ((resolve$ {1 : , reject}) => {
1061- ${0 }
1062- })
1063- ```
1064-
1065- ** [ back to top] ( #table-of-contents ) **
1065+ ** [ back to top] ( #readme ) **
10661066
10671067## Related
10681068- [ always-done] ( https://www.npmjs.com/package/always-done ) : Handle completion and errors with elegance! Support for streams, callbacks, promises, child processes, async/await and sync functions. A drop-in replacement… [ more] ( https://github.com/hybridables/always-done#readme ) | [ homepage] ( https://github.com/hybridables/always-done#readme " Handle completion and errors with elegance! Support for streams, callbacks, promises, child processes, async/await and sync functions. A drop-in replacement for [async-done][] - pass 100% of its tests plus more ")
@@ -1103,15 +1103,15 @@ $ npm install && npm test
11031103** Charlike Mike Reagent**
11041104
11051105+ [ github/tunnckoCore] ( https://github.com/tunnckoCore )
1106- + [ twitter/tunnckoCore] ( http ://twitter.com/tunnckoCore)
1106+ + [ twitter/tunnckoCore] ( https ://twitter.com/tunnckoCore)
11071107+ [ codementor/tunnckoCore] ( https://codementor.io/tunnckoCore )
11081108
11091109## License
11101110Copyright © 2016-2017, [ Charlike Mike Reagent] ( http://i.am.charlike.online ) . Released under the [ MIT license] ( LICENSE ) .
11111111
11121112***
11131113
1114- _ This file was generated by [ verb-generate-readme] ( https://github.com/verbose/verb-generate-readme ) , v0.3.0 , on January 14 , 2017._
1114+ _ This file was generated by [ verb-generate-readme] ( https://github.com/verbose/verb-generate-readme ) , v0.4.1 , on January 15 , 2017._
11151115_ Project scaffolded using [ charlike] [ ] cli._
11161116
11171117[ always-done ] : https://github.com/hybridables/always-done
0 commit comments