(options)
| 126 | } |
| 127 | |
| 128 | dump(options) { |
| 129 | options = { ...this.options, ...options }; |
| 130 | return this.langs.map(lang => { |
| 131 | const data = this.getData(lang, options); |
| 132 | const locale = this.locales[lang]; |
| 133 | return locale.dump(data, options); |
| 134 | }); |
| 135 | } |
| 136 | |
| 137 | touch(key) { |
| 138 | let item = this.data[key]; |