MCPcopy Create free account
hub / github.com/livebud/bud / MustLoad

Function MustLoad

framework/transform/transformrt/transform.go:74–80  ·  view source on GitHub ↗
(transformables ...*Transformable)

Source from the content-addressed store, hash-verified

72}
73
74func MustLoad(transformables ...*Transformable) *Map {
75 transformer, err := Load(transformables...)
76 if err != nil {
77 panic("transform: unable to load the transformer: " + err.Error())
78 }
79 return transformer
80}
81
82func Load(transformables ...*Transformable) (*Map, error) {
83 browser, err := load(PlatformDOM, transformables)

Callers

nothing calls this directly

Calls 2

LoadFunction · 0.70
ErrorMethod · 0.65

Tested by

no test coverage detected