Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
368 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
---|
| 4 | value: true
|
---|
| 5 | });
|
---|
| 6 | exports.default = getArguments;
|
---|
| 7 |
|
---|
| 8 | function getArguments(node) {
|
---|
| 9 | return node.nodes.reduce((list, child) => {
|
---|
| 10 | if (child.type !== 'div') {
|
---|
| 11 | list[list.length - 1].push(child);
|
---|
| 12 | } else {
|
---|
| 13 | list.push([]);
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | return list;
|
---|
| 17 | }, [[]]);
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | module.exports = exports.default; |
---|
Note:
See
TracBrowser
for help on using the repository browser.