github.com/jgarto/itcv@v0.0.0-20180826224514-4eea09c1aa0d/unsafe.go (about)

     1  // +build !js
     2  
     3  package react
     4  
     5  import (
     6  	"github.com/gopherjs/gopherjs/js"
     7  )
     8  
     9  func wrapValue(v interface{}) *js.Object {
    10  	return nil
    11  }
    12  
    13  func unwrapValue(v *js.Object) interface{} {
    14  	return nil
    15  }