Skip to content

Commit 6da2c64

Browse files
authored
Fix local links
1 parent 5d3405f commit 6da2c64

File tree

1 file changed

+56
-56
lines changed

1 file changed

+56
-56
lines changed

README.md

+56-56
Original file line numberDiff line numberDiff line change
@@ -114,30 +114,30 @@ Visit the: [code](lib/array.js) | [unit tests](test/array.js) | [issues](https:/
114114
* **[after](#after)** ([code](lib/array.js#L22) | [tests](test/array.js#L13))
115115
* **[arrayify](#arrayify)** ([code](lib/array.js#L39) | [tests](test/array.js#L29))
116116
* **[before](#before)** ([code](lib/array.js#L58) | [tests](test/array.js#L36))
117-
* **[eachIndex](#eachIndex)** ([code](lib/array.js#L77) | [tests](test/array.js#L58))
117+
* **[eachIndex](#eachindex)** ([code](lib/array.js#L77) | [tests](test/array.js#L58))
118118
* **[filter](#filter)** ([code](lib/array.js#L102) | [tests](test/array.js#L91))
119119
* **[first](#first)** ([code](lib/array.js#L142) | [tests](test/array.js#L65))
120-
* **[forEach](#forEach)** ([code](lib/array.js#L184) | [tests](test/array.js#L123))
121-
* **[inArray](#inArray)** ([code](lib/array.js#L224) | [tests](test/array.js#L160))
122-
* **[isArray](#isArray)** ([code](lib/array.js#L244) | [tests](test/array.js#L172))
123-
* **[itemAt](#itemAt)** ([code](lib/array.js#L263) | [tests](test/array.js#L182))
120+
* **[forEach](#foreach)** ([code](lib/array.js#L184) | [tests](test/array.js#L123))
121+
* **[inArray](#inarray)** ([code](lib/array.js#L224) | [tests](test/array.js#L160))
122+
* **[isArray](#isarray)** ([code](lib/array.js#L244) | [tests](test/array.js#L172))
123+
* **[itemAt](#itemat)** ([code](lib/array.js#L263) | [tests](test/array.js#L182))
124124
* **[join](#join)** ([code](lib/array.js#L294) | [tests](test/array.js#L225))
125-
* **[equalsLength](#equalsLength)** ([code](lib/array.js#L313) | [no tests])
125+
* **[equalsLength](#equalslength)** ([code](lib/array.js#L313) | [no tests])
126126
* **[last](#last)** ([code](lib/array.js#L349) | [tests](test/array.js#L240))
127127
* **[length](#length)** ([code](lib/array.js#L379) | [tests](test/array.js#L254))
128-
* **[lengthEqual](#lengthEqual)** ([code](lib/array.js#L395) | [tests](test/array.js#L254))
128+
* **[lengthEqual](#lengthequal)** ([code](lib/array.js#L395) | [tests](test/array.js#L254))
129129
* **[map](#map)** ([code](lib/array.js#L414) | [tests](test/array.js#L266))
130130
* **[pluck](#pluck)** ([code](lib/array.js#L445) | [tests](test/array.js#L300))
131131
* **[reverse](#reverse)** ([code](lib/array.js#L473) | [no tests])
132132
* **[some](#some)** ([code](lib/array.js#L504) | [tests](test/array.js#L308))
133133
* **[sort](#sort)** ([code](lib/array.js#L532) | [tests](test/array.js#L333))
134-
* **[sortBy](#sortBy)** ([code](lib/array.js#L557) | [tests](test/array.js#L358))
135-
* **[withAfter](#withAfter)** ([code](lib/array.js#L588) | [tests](test/array.js#L390))
136-
* **[withBefore](#withBefore)** ([code](lib/array.js#L618) | [tests](test/array.js#L397))
137-
* **[withFirst](#withFirst)** ([code](lib/array.js#L648) | [tests](test/array.js#L404))
138-
* **[withGroup](#withGroup)** ([code](lib/array.js#L692) | [tests](test/array.js#L418))
139-
* **[withLast](#withLast)** ([code](lib/array.js#L727) | [tests](test/array.js#L428))
140-
* **[withSort](#withSort)** ([code](lib/array.js#L766) | [tests](test/array.js#L442))
134+
* **[sortBy](#sortby)** ([code](lib/array.js#L557) | [tests](test/array.js#L358))
135+
* **[withAfter](#withafter)** ([code](lib/array.js#L588) | [tests](test/array.js#L390))
136+
* **[withBefore](#withbefore)** ([code](lib/array.js#L618) | [tests](test/array.js#L397))
137+
* **[withFirst](#withfirst)** ([code](lib/array.js#L648) | [tests](test/array.js#L404))
138+
* **[withGroup](#withgroup)** ([code](lib/array.js#L692) | [tests](test/array.js#L418))
139+
* **[withLast](#withlast)** ([code](lib/array.js#L727) | [tests](test/array.js#L428))
140+
* **[withSort](#withsort)** ([code](lib/array.js#L766) | [tests](test/array.js#L442))
141141
* **[unique](#unique)** ([code](lib/array.js#L816) | [tests](test/array.js#L483))
142142

143143
### [code helpers](#code)
@@ -167,23 +167,23 @@ Visit the: [code](lib/comparison.js) | [unit tests](test/comparison.js) | [issue
167167
* **[gt](#gt)** ([code](lib/comparison.js#L188) | [tests](test/comparison.js#L214))
168168
* **[gte](#gte)** ([code](lib/comparison.js#L212) | [tests](test/comparison.js#L245))
169169
* **[has](#has)** ([code](lib/comparison.js#L232) | [tests](test/comparison.js#L260))
170-
* **[isFalsey](#isFalsey)** ([code](lib/comparison.js#L274) | [tests](test/comparison.js#L327))
171-
* **[isTruthy](#isTruthy)** ([code](lib/comparison.js#L289) | [tests](test/comparison.js#L339))
172-
* **[ifEven](#ifEven)** ([code](lib/comparison.js#L310) | [tests](test/comparison.js#L368))
173-
* **[ifNth](#ifNth)** ([code](lib/comparison.js#L327) | [tests](test/comparison.js#L380))
174-
* **[ifOdd](#ifOdd)** ([code](lib/comparison.js#L350) | [tests](test/comparison.js#L403))
170+
* **[isFalsey](#isfalsey)** ([code](lib/comparison.js#L274) | [tests](test/comparison.js#L327))
171+
* **[isTruthy](#istruthy)** ([code](lib/comparison.js#L289) | [tests](test/comparison.js#L339))
172+
* **[ifEven](#ifeven)** ([code](lib/comparison.js#L310) | [tests](test/comparison.js#L368))
173+
* **[ifNth](#ifnth)** ([code](lib/comparison.js#L327) | [tests](test/comparison.js#L380))
174+
* **[ifOdd](#ifodd)** ([code](lib/comparison.js#L350) | [tests](test/comparison.js#L403))
175175
* **[is](#is)** ([code](lib/comparison.js#L274) | [tests](test/comparison.js#L327))
176176
* **[isnt](#isnt)** ([code](lib/comparison.js#L389) | [tests](test/comparison.js#L432))
177177
* **[lt](#lt)** ([code](lib/comparison.js#L411) | [tests](test/comparison.js#L449))
178178
* **[lte](#lte)** ([code](lib/comparison.js#L435) | [tests](test/comparison.js#L476))
179179
* **[neither](#neither)** ([code](lib/comparison.js#L456) | [tests](test/comparison.js#L511))
180180
* **[not](#not)** ([code](lib/comparison.js#L470) | [no tests])
181181
* **[or](#or)** ([code](lib/comparison.js#L492) | [tests](test/comparison.js#L523))
182-
* **[unlessEq](#unlessEq)** ([code](lib/comparison.js#L518) | [tests](test/comparison.js#L556))
183-
* **[unlessGt](#unlessGt)** ([code](lib/comparison.js#L538) | [tests](test/comparison.js#L567))
184-
* **[unlessLt](#unlessLt)** ([code](lib/comparison.js#L558) | [tests](test/comparison.js#L578))
185-
* **[unlessGteq](#unlessGteq)** ([code](lib/comparison.js#L578) | [tests](test/comparison.js#L589))
186-
* **[unlessLteq](#unlessLteq)** ([code](lib/comparison.js#L598) | [tests](test/comparison.js#L604))
182+
* **[unlessEq](#unlesseq)** ([code](lib/comparison.js#L518) | [tests](test/comparison.js#L556))
183+
* **[unlessGt](#unlessgt)** ([code](lib/comparison.js#L538) | [tests](test/comparison.js#L567))
184+
* **[unlessLt](#unlesslt)** ([code](lib/comparison.js#L558) | [tests](test/comparison.js#L578))
185+
* **[unlessGteq](#unlessgteq)** ([code](lib/comparison.js#L578) | [tests](test/comparison.js#L589))
186+
* **[unlessLteq](#unlesslteq)** ([code](lib/comparison.js#L598) | [tests](test/comparison.js#L604))
187187

188188
### [date helpers](#date)
189189

@@ -254,7 +254,7 @@ Visit the: [code](lib/markdown.js) | [unit tests](test/markdown.js) | [issues](h
254254
Visit the: [code](lib/match.js) | [unit tests](test/match.js) | [issues](https://github.com/helpers/handlebars-helpers/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+match+helpers))
255255

256256
* **[match](#match)** ([code](lib/match.js#L23) | [tests](test/match.js#L13))
257-
* **[isMatch](#isMatch)** ([code](lib/match.js#L47) | [tests](test/match.js#L61))
257+
* **[isMatch](#ismatch)** ([code](lib/match.js#L47) | [tests](test/match.js#L61))
258258
* **[mm](#mm)** ([code](lib/match.js#L56) | [no tests])
259259

260260
### [math helpers](#math)
@@ -286,38 +286,38 @@ Visit the: [code](lib/misc.js) | [unit tests](test/misc.js) | [issues](https://g
286286
* **[option](#option)** ([code](lib/misc.js#L26) | [tests](test/misc.js#L20))
287287
* **[noop](#noop)** ([code](lib/misc.js#L39) | [tests](test/misc.js#L13))
288288
* **[typeOf](#typeOf)** ([code](lib/misc.js#L59) | [no tests])
289-
* **[withHash](#withHash)** ([code](lib/misc.js#L71) | [tests](test/misc.js#L38))
289+
* **[withHash](#withhash)** ([code](lib/misc.js#L71) | [tests](test/misc.js#L38))
290290

291291
### [number helpers](#number)
292292

293293
Visit the: [code](lib/number.js) | [unit tests](test/number.js) | [issues](https://github.com/helpers/handlebars-helpers/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+number+helpers))
294294

295295
* **[bytes](#bytes)** ([code](lib/number.js#L24) | [tests](test/number.js#L10))
296-
* **[addCommas](#addCommas)** ([code](lib/number.js#L61) | [tests](test/number.js#L84))
297-
* **[phoneNumber](#phoneNumber)** ([code](lib/number.js#L74) | [tests](test/number.js#L30))
298-
* **[toAbbr](#toAbbr)** ([code](lib/number.js#L92) | [tests](test/number.js#L91))
299-
* **[toExponential](#toExponential)** ([code](lib/number.js#L130) | [tests](test/number.js#L59))
300-
* **[toFixed](#toFixed)** ([code](lib/number.js#L153) | [tests](test/number.js#L37))
301-
* **[toFloat](#toFloat)** ([code](lib/number.js#L169) | [tests](test/number.js#L77))
302-
* **[toInt](#toInt)** ([code](lib/number.js#L179) | [tests](test/number.js#L70))
303-
* **[toPrecision](#toPrecision)** ([code](lib/number.js#L196) | [tests](test/number.js#L48))
296+
* **[addCommas](#addcommas)** ([code](lib/number.js#L61) | [tests](test/number.js#L84))
297+
* **[phoneNumber](#phonenumber)** ([code](lib/number.js#L74) | [tests](test/number.js#L30))
298+
* **[toAbbr](#toabbr)** ([code](lib/number.js#L92) | [tests](test/number.js#L91))
299+
* **[toExponential](#toexponential)** ([code](lib/number.js#L130) | [tests](test/number.js#L59))
300+
* **[toFixed](#tofixed)** ([code](lib/number.js#L153) | [tests](test/number.js#L37))
301+
* **[toFloat](#tofloat)** ([code](lib/number.js#L169) | [tests](test/number.js#L77))
302+
* **[toInt](#toint)** ([code](lib/number.js#L179) | [tests](test/number.js#L70))
303+
* **[toPrecision](#toprecision)** ([code](lib/number.js#L196) | [tests](test/number.js#L48))
304304

305305
### [object helpers](#object)
306306

307307
Visit the: [code](lib/object.js) | [unit tests](test/object.js) | [issues](https://github.com/helpers/handlebars-helpers/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+object+helpers))
308308

309309
* **[extend](#extend)** ([code](lib/object.js#L18) | [tests](test/object.js#L15))
310-
* **[forIn](#forIn)** ([code](lib/object.js#L55) | [tests](test/object.js#L33))
311-
* **[forOwn](#forOwn)** ([code](lib/object.js#L81) | [tests](test/object.js#L50))
312-
* **[toPath](#toPath)** ([code](lib/object.js#L106) | [tests](test/object.js#L87))
310+
* **[forIn](#forin)** ([code](lib/object.js#L55) | [tests](test/object.js#L33))
311+
* **[forOwn](#forown)** ([code](lib/object.js#L81) | [tests](test/object.js#L50))
312+
* **[toPath](#topath)** ([code](lib/object.js#L106) | [tests](test/object.js#L87))
313313
* **[get](#get)** ([code](lib/object.js#L128) | [tests](test/object.js#L77))
314-
* **[getObject](#getObject)** ([code](lib/object.js#L149) | [tests](test/object.js#L77))
315-
* **[hasOwn](#hasOwn)** ([code](lib/object.js#L167) | [tests](test/object.js#L126))
316-
* **[isObject](#isObject)** ([code](lib/object.js#L183) | [tests](test/object.js#L144))
317-
* **[JSONparse](#JSONparse)** ([code](lib/object.js#L201) | [tests](test/object.js#L164))
318-
* **[JSONstringify](#JSONstringify)** ([code](lib/object.js#L218) | [no tests])
314+
* **[getObject](#getobject)** ([code](lib/object.js#L149) | [tests](test/object.js#L77))
315+
* **[hasOwn](#hasown)** ([code](lib/object.js#L167) | [tests](test/object.js#L126))
316+
* **[isObject](#isobject)** ([code](lib/object.js#L183) | [tests](test/object.js#L144))
317+
* **[JSONparse](#jsonparse)** ([code](lib/object.js#L201) | [tests](test/object.js#L164))
318+
* **[JSONstringify](#jsonstringify)** ([code](lib/object.js#L218) | [no tests])
319319
* **[merge](#merge)** ([code](lib/object.js#L235) | [tests](test/object.js#L156))
320-
* **[parseJSON](#parseJSON)** ([code](lib/object.js#L254) | [no tests])
320+
* **[parseJSON](#parsejson)** ([code](lib/object.js#L254) | [no tests])
321321
* **[pick](#pick)** ([code](lib/object.js#L267) | [tests](test/object.js#L171))
322322
* **[stringify](#stringify)** ([code](lib/object.js#L290) | [tests](test/object.js#L199))
323323

@@ -348,7 +348,7 @@ Visit the: [code](lib/string.js) | [unit tests](test/string.js) | [issues](https
348348
* **[append](#append)** ([code](lib/string.js#L22) | [no tests])
349349
* **[camelcase](#camelcase)** ([code](lib/string.js#L41) | [tests](test/string.js#L10))
350350
* **[capitalize](#capitalize)** ([code](lib/string.js#L60) | [tests](test/string.js#L25))
351-
* **[capitalizeAll](#capitalizeAll)** ([code](lib/string.js#L77) | [tests](test/string.js#L36))
351+
* **[capitalizeAll](#capitalizeall)** ([code](lib/string.js#L77) | [tests](test/string.js#L36))
352352
* **[center](#center)** ([code](lib/string.js#L95) | [tests](test/string.js#L47))
353353
* **[chop](#chop)** ([code](lib/string.js#L125) | [tests](test/string.js#L58))
354354
* **[dashcase](#dashcase)** ([code](lib/string.js#L143) | [tests](test/string.js#L73))
@@ -365,36 +365,36 @@ Visit the: [code](lib/string.js) | [unit tests](test/string.js) | [issues](https
365365
* **[prepend](#prepend)** ([code](lib/string.js#L363) | [no tests])
366366
* **[raw](#raw)** ([code](lib/string.js#L385) | [no tests])
367367
* **[remove](#remove)** ([code](lib/string.js#L413) | [no tests])
368-
* **[removeFirst](#removeFirst)** ([code](lib/string.js#L432) | [no tests])
368+
* **[removeFirst](#removefirst)** ([code](lib/string.js#L432) | [no tests])
369369
* **[replace](#replace)** ([code](lib/string.js#L452) | [tests](test/string.js#L222))
370-
* **[replaceFirst](#replaceFirst)** ([code](lib/string.js#L473) | [no tests])
370+
* **[replaceFirst](#replacefirst)** ([code](lib/string.js#L473) | [no tests])
371371
* **[reverse](#reverse)** ([code](lib/string.js#L492) | [tests](test/string.js#L241))
372372
* **[sentence](#sentence)** ([code](lib/string.js#L509) | [tests](test/string.js#L252))
373373
* **[snakecase](#snakecase)** ([code](lib/string.js#L528) | [tests](test/string.js#L263))
374374
* **[split](#split)** ([code](lib/string.js#L547) | [tests](test/string.js#L278))
375-
* **[startsWith](#startsWith)** ([code](lib/string.js#L572) | [tests](test/string.js#L293))
375+
* **[startsWith](#startswith)** ([code](lib/string.js#L572) | [tests](test/string.js#L293))
376376
* **[titleize](#titleize)** ([code](lib/string.js#L596) | [tests](test/string.js#L312))
377377
* **[trim](#trim)** ([code](lib/string.js#L623) | [tests](test/string.js#L323))
378-
* **[trimLeft](#trimLeft)** ([code](lib/string.js#L639) | [no tests])
379-
* **[trimRight](#trimRight)** ([code](lib/string.js#L657) | [no tests])
378+
* **[trimLeft](#trimleft)** ([code](lib/string.js#L639) | [no tests])
379+
* **[trimRight](#trimright)** ([code](lib/string.js#L657) | [no tests])
380380
* **[truncate](#truncate)** ([code](lib/string.js#L680) | [tests](test/string.js#L338))
381-
* **[truncateWords](#truncateWords)** ([code](lib/string.js#L712) | [no tests])
381+
* **[truncateWords](#truncatewords)** ([code](lib/string.js#L712) | [no tests])
382382
* **[upcase](#upcase)** ([code](lib/string.js#L742) | [no tests])
383383
* **[uppercase](#uppercase)** ([code](lib/string.js#L763) | [tests](test/string.js#L362))
384384

385385
### [url helpers](#url)
386386

387387
Visit the: [code](lib/url.js) | [unit tests](test/url.js) | [issues](https://github.com/helpers/handlebars-helpers/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+url+helpers))
388388

389-
* **[encodeURI](#encodeURI)** ([code](lib/url.js#L19) | [tests](test/url.js#L31))
389+
* **[encodeURI](#encodeuri)** ([code](lib/url.js#L19) | [tests](test/url.js#L31))
390390
* **[escape](#escape)** ([code](lib/url.js#L34) | [no tests])
391-
* **[decodeURI](#decodeURI)** ([code](lib/url.js#L48) | [tests](test/url.js#L38))
391+
* **[decodeURI](#decodeuri)** ([code](lib/url.js#L48) | [tests](test/url.js#L38))
392392
* **[url_encode](#url_encode)** ([code](lib/url.js#L59) | [no tests])
393393
* **[url_decode](#url_decode)** ([code](lib/url.js#L68) | [no tests])
394394
* **[urlResolve](#urlResolve)** ([code](lib/url.js#L82) | [tests](test/url.js#L11))
395-
* **[urlParse](#urlParse)** ([code](lib/url.js#L94) | [tests](test/url.js#L45))
396-
* **[stripQuerystring](#stripQuerystring)** ([code](lib/url.js#L106) | [tests](test/url.js#L24))
397-
* **[stripProtocol](#stripProtocol)** ([code](lib/url.js#L126) | [no tests])
395+
* **[urlParse](#urlparse)** ([code](lib/url.js#L94) | [tests](test/url.js#L45))
396+
* **[stripQuerystring](#stripquerystring)** ([code](lib/url.js#L106) | [tests](test/url.js#L24))
397+
* **[stripProtocol](#stripprotocol)** ([code](lib/url.js#L126) | [no tests])
398398

399399
***
400400

@@ -3345,4 +3345,4 @@ Released under the [MIT License](LICENSE).
33453345

33463346
***
33473347

3348-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on November 17, 2017._
3348+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on November 17, 2017._

0 commit comments

Comments
 (0)