This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "displayName": "tester-jp", | |
| "blocks": [ | |
| { | |
| "id": "aaaejr2ei3ck6", | |
| "type": "input", | |
| "inputType": "firehose" | |
| }, | |
| { | |
| "id": "aaaejr2ei36mu", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| build: (elements) => { | |
| // デバイスタイプを取得(存在しない場合はmobile) | |
| const device = process.env.DEVICE || 'mobile'; | |
| // 整形すべきものはobjectでなくてはならない | |
| if (typeof elements !== 'object') { | |
| throw new Error('Invalid Argument'); | |
| } |