Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bs-uchar

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bs-uchar

`bs-uchar` ---------- This is the Uchar compatibility library from OCaml 4.03, backported to OCaml 4.02, and thus [BuckleScript][] (an OCaml-to-JavaScript compiler) versions prior to 6.0.0 (which were forked from OCaml 4.02.3) and [Reason][] (an alternati

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

bs-uchar

This is the Uchar compatibility library from OCaml 4.03, backported to OCaml 4.02, and thus BuckleScript (an OCaml-to-JavaScript compiler) versions prior to 6.0.0 (which were forked from OCaml 4.02.3) and Reason (an alternative OCaml syntax targeting that compiler.)

You can safely ignore the installation instructions below when compiling to JS. Instead:

  1. Install this fork through npm:

    npm install --save @elliottcable/bs-uchar
    
  2. Manually add bs-uchar to your bsconfig.json's bs-dependencies:

     "bs-dependencies": [
       ...
    +  "bs-uchar"
     ],
    
  3. Unconditionally and globally open UcharShim in your program, by adding an -open to bsc-flags in your bsconfig.json:

     "bsc-flags": [
        ...
    +   "-open UcharShim"
     ]
    

    (The UcharShim module has no contents when compiled on a version of OCaml already containing a Uchar module; and you can safely simply remove the -open flag when you wish to drop support for BuckleScript v4 & v5.)

  4. Use Uchar.t in your program!

Original README follows:

Uchar — Compatibility library for OCaml's Uchar module

Release %%VERSION%%

The uchar package provides a compatibility library for the Uchar module introduced in OCaml 4.03.

The uchar package is distributed under the license of the OCaml compiler. See LICENSE for details.

Home page: https://ocaml.github.io/uchar/ Contact: Daniel Bünzli <daniel.buenzl i@erratique.ch>

Installation

Uchar can be installed with opam:

opam install uchar

If you don't use opam consult the opam file for build instructions.

Documentation

Since OCaml 4.03 you can find the module in the documentation of the standard library. Before this you can consult this page.

Testing

The file test/testpkg.ml can be used to test the compilation of the package. Once the package is installed the following invocation should succeed both before and after 4.03

ocamlbuild -X src -use-ocamlfind -pkg uchar test/testpkg.native

Keywords

FAQs

Package last updated on 16 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc