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

Method getArrayToString

builtin_array.go:1732–1739  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1730}
1731
1732func (r *Runtime) getArrayToString() *Object {
1733 ret := r.global.arrayToString
1734 if ret == nil {
1735 ret = r.newNativeFunc(r.arrayproto_toString, "toString", 0)
1736 r.global.arrayToString = ret
1737 }
1738 return ret
1739}
1740
1741func (r *Runtime) getArrayIteratorPrototype() *Object {
1742 var o *Object

Callers 2

createArrayProtoTemplateFunction · 0.80

Calls 1

newNativeFuncMethod · 0.95

Tested by

no test coverage detected