main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
267 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | /*
|
---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
| 3 | Author Tobias Koppers @sokra
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | "use strict";
|
---|
| 7 |
|
---|
| 8 | const getName = (sourceMap, index) => {
|
---|
| 9 | if (index < 0) return null;
|
---|
| 10 | const { names } = sourceMap;
|
---|
| 11 | return names[index];
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | module.exports = getName;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.