You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
346 B
18 lines
346 B
#!/usr/bin/env node |
|
let input = []; |
|
|
|
process.stdin.resume(); |
|
process.stdin.setEncoding('utf8'); |
|
|
|
process.stdin.on('data', (data) => { |
|
input.push(data); |
|
}); |
|
|
|
process.stdin.on('end', () => { |
|
const str = input.join(''); |
|
const pages = JSON.parse(str); |
|
|
|
pages.forEach(({ id }, index) => { |
|
console.log(`pages[${index}]="${id}"`); |
|
}); |
|
});
|
|
|