github.com/primecitizens/pcz/std@v0.2.1/builtin/print/print_js.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build js
     5  
     6  package stdprint
     7  
     8  import (
     9  	"github.com/primecitizens/pcz/std/builtin/print/bindings"
    10  	"github.com/primecitizens/pcz/std/ffi/js"
    11  )
    12  
    13  func gwrite(b []byte) {
    14  	if len(b) == 0 {
    15  		return
    16  	}
    17  
    18  	bindings.Print(js.SliceData(b), js.SizeU(len(b)))
    19  }