(txt string)
| 810 | } |
| 811 | |
| 812 | func convertDeprecation(txt string) string { |
| 813 | if len(txt) > 13 && txt[:13] == " Deprecated: " { |
| 814 | return " @deprecated " + txt[13:] |
| 815 | } |
| 816 | |
| 817 | return txt |
| 818 | } |
| 819 | |
| 820 | // ImportSpecifier builds the goja ImportSpecifier for a single named import. |
| 821 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…