Skip to content

Commit 70ef25f

Browse files
docs(README.md): update.
1 parent 42dc695 commit 70ef25f

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

README.md

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -94,89 +94,89 @@ The documentation is in construction and it's available at [https://docs.angular
9494

9595
### Api
9696

97-
#### list.add()
97+
#### ```list.add()```
9898

9999
```scss
100100
list.add($list, $separator: auto, $value, $values...)
101101
```
102102

103-
#### list.append()
103+
#### ```list.append()```
104104

105105
```scss
106106
list.add($list, $separator: auto, $value, $values...)
107107
```
108108

109-
#### list.each()
109+
#### ```list.each()```
110110

111111
```scss
112112
list.each($list, $comma: true, $index: 1)
113113
```
114114

115-
#### list.empty()
115+
#### ```list.empty()```
116116

117117
```scss
118118
list.empty($list)
119119
```
120120

121-
#### list.extract-map()
121+
#### ```list.extract-map()```
122122

123123
```scss
124124
list.extract-map($list, $occurrence: first)
125125
```
126126

127-
#### list.first()
127+
#### ```list.first()```
128128

129129
```scss
130130
list.first($list)
131131
```
132132

133-
#### list.flatten()
133+
#### ```list.flatten()```
134134

135135
```scss
136136
list.flatten($list)
137137
```
138138

139-
#### list.from()
139+
#### ```list.from()```
140140

141141
![todo]
142142

143143
```scss
144144
list.from($list, $from) // TODO
145145
```
146146

147-
#### list.has()
147+
#### ```list.has()```
148148

149149
![todo]
150150

151151
```scss
152152
list.has($list, $occurrence: any, $operator: '==', $value, $values...) // TODO
153153
```
154154

155-
#### list.index()
155+
#### ```list.index()```
156156

157157
```scss
158158
list.index($list, $value, $values...)
159159
```
160160

161-
#### list.insert-nth()
161+
#### ```list.insert-nth()```
162162

163163
```scss
164164
list.insert-nth($list, $n, $value)
165165
```
166166

167-
#### list.invert()
167+
#### ```list.invert()```
168168

169169
```scss
170170
list.invert($list)
171171
```
172172

173-
#### list.is-length()
173+
#### ```list.is-length()```
174174

175175
```scss
176176
list.is-length($list, $length)
177177
```
178178

179-
#### list.join()
179+
#### ```list.join()```
180180

181181
```scss
182182
list.join(
@@ -188,57 +188,57 @@ list.join(
188188
)
189189
```
190190

191-
#### list.last()
191+
#### ```list.last()```
192192

193193
```scss
194194
list.last($list)
195195
```
196196

197-
#### list.limit()
197+
#### ```list.limit()```
198198

199199
```scss
200200
list.limit($list, $limit...)
201201
```
202202

203-
#### list.merge()
203+
#### ```list.merge()```
204204

205205
```scss
206206
list.merge($list1, $list2)
207207
```
208208

209-
#### list.nth()
209+
#### ```list.nth()```
210210

211211
```scss
212212
list.nth($list, $n, $nts...)
213213
```
214214

215-
#### list.nths()
215+
#### ```list.nths()```
216216

217217
```scss
218218
list.nths($list, $n...)
219219
```
220220

221-
#### list.of()
221+
#### ```list.of()```
222222

223223
```scss
224224
list.of($list, $spec, $separator: null, $type: false)
225225
```
226226

227-
#### list.range()
227+
#### ```list.range()```
228228

229229
![todo]
230230

231231
```scss
232232
list.range($list, $from: 1, $to: list.length($list))
233233
```
234234

235-
#### list.replace()
235+
#### ```list.replace()```
236236

237237
```scss
238238
list.replace($list, $replace, $replacement)
239239
```
240240

241-
#### list.select()
241+
#### ```list.select()```
242242

243243
![todo]
244244

@@ -253,133 +253,133 @@ list.select(
253253
) // TODO
254254
```
255255

256-
#### list.swap()
256+
#### ```list.swap()```
257257

258258
```scss
259259
list.swap($list, $n, $to, $nth: list.nth($list, $n))
260260
```
261261

262-
#### list.to-map()
262+
#### ```list.to-map()```
263263

264264
![todo]
265265

266266
```scss
267267
list.to-map($list, $keys...)
268268
```
269269

270-
#### list.to()
270+
#### ```list.to()```
271271

272272
![todo]
273273

274274
```scss
275275
list.to($list, $to)
276276
```
277277

278-
#### list.type()
278+
#### ```list.type()```
279279

280280
```scss
281281
list.type($list, $n...)
282282
```
283283

284-
#### list.update()
284+
#### ```list.update()```
285285

286286
```scss
287287
list.update($list, $nth-value...)
288288
```
289289

290-
### list.get-[method]
290+
### ```list.get-[method]```
291291

292292
Get methods.
293293

294-
#### list.get-bool()
294+
#### ```list.get-bool()```
295295

296296
```scss
297297
list.get-bool($list, $occurrence: first)
298298
```
299299

300-
#### list.get-list()
300+
#### ```list.get-list()```
301301

302302
```scss
303303
list.get-list($list, $occurrence: first)
304304
```
305305

306-
#### list.get-map()
306+
#### ```list.get-map()```
307307

308308
```scss
309309
list.get-map($list, $occurrence: first)
310310
```
311311

312-
#### list.get-number()
312+
#### ```list.get-number()```
313313

314314
```scss
315315
list.get-number($list, $occurrence: first)
316316
```
317317

318-
#### list.get-string()
318+
#### ```list.get-string()```
319319

320320
```scss
321321
list.get-string($list, $occurrence: first)
322322
```
323323

324-
#### list.get-type()
324+
#### ```list.get-type()```
325325

326326
```scss
327327
list.get-type($list, $occurrence: any, $type, $types...)
328328
```
329329

330-
### list.remove-[method]
330+
### ```list.remove-[method]```
331331

332332
Remove methods.
333333

334-
#### list.remove-duplicate()
334+
#### ```list.remove-duplicate()```
335335

336336
```scss
337337
list.remove-duplicate($list, $values...)
338338
```
339339

340-
#### list.remove-list()
340+
#### ```list.remove-list()```
341341

342342
```scss
343343
list.remove-duplicate($list, $values...) // TODO
344344
```
345345

346-
#### list.remove-map()
346+
#### ```list.remove-map()```
347347

348348
```scss
349349
list.remove-map($list)
350350
```
351351

352-
#### list.remove-nth()
352+
#### ```list.remove-nth()```
353353

354354
```scss
355355
list.remove-nth($list, $n, $nts...)
356356
```
357357

358-
#### list.remove-number()
358+
#### ```list.remove-number()```
359359

360360
```scss
361361
list.remove-number($list)
362362
```
363363

364-
#### list.remove-range()
364+
#### ```list.remove-range()```
365365

366366
```scss
367367
list.remove-range($list, $from: 1, $to: list.length($list)) // TODO
368368
```
369369

370-
#### list.remove-string()
370+
#### ```list.remove-string()```
371371

372372
```scss
373373
list.remove-string($list)
374374
```
375375

376-
#### list.remove-type()
376+
#### ```list.remove-type()```
377377

378378
```scss
379379
list.remove-type($list, $type, $types...)
380380
```
381381

382-
#### list.remove-value()
382+
#### ```list.remove-value()```
383383

384384
```scss
385385
list.remove-value($list, $value, $values...)

0 commit comments

Comments
 (0)