Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/lines-and-columns/README.md

    r59329aa re29cc2e  
    1414
    1515```js
    16 import LinesAndColumns from 'lines-and-columns';
     16import { LinesAndColumns } from 'lines-and-columns'
    1717
    1818const lines = new LinesAndColumns(
    19 `table {
     19  `table {
    2020  border: 0
    21 }`);
     21}`
     22)
    2223
    23 lines.locationForIndex(9);                       // { line: 1, column: 1 }
    24 lines.indexForLocation({ line: 1, column: 2 });  // 10
     24lines.locationForIndex(9)
     25// { line: 1, column: 1 }
     26
     27lines.indexForLocation({ line: 1, column: 2 })
     28// 10
    2529```
    2630
Note: See TracChangeset for help on using the changeset viewer.