MCPcopy Create free account
hub / github.com/dop251/goja / String

Method String

string_unicode.go:274–279  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

272}
273
274func (b *StringBuilder) String() String {
275 if b.ascii() {
276 return asciiString(b.asciiBuilder.String())
277 }
278 return b.unicodeBuilder.String()
279}
280
281func (b *StringBuilder) Grow(n int) {
282 if b.ascii() {

Callers 15

funcNameFunction · 0.95
TestStringBuilderFunction · 0.95
TestValueStringBuilderFunction · 0.95
regexpproto_toStringMethod · 0.95
regexpproto_getSourceMethod · 0.95
arrayproto_joinMethod · 0.95
string_fromcodepointMethod · 0.95
string_rawMethod · 0.95
stringReplaceMethod · 0.95
typedArrayProto_joinMethod · 0.95

Calls 3

asciiMethod · 0.95
asciiStringTypeAlias · 0.85
StringMethod · 0.65

Tested by 2

TestStringBuilderFunction · 0.76
TestValueStringBuilderFunction · 0.76