* Returns a DataURI containing the sourcemap. Useful for doing this sort of thing: * `generateMap(options?: SourceMapOptions): SourceMap;`
()
| 104 | * `generateMap(options?: SourceMapOptions): SourceMap;` |
| 105 | */ |
| 106 | toUrl(): string { |
| 107 | return `data:application/json;charset=utf-8;base64,${btoa(this.toString())}` |
| 108 | } |
| 109 | } |