JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 449
  • Score
    100M100P100Q75459F
  • License MIT

NobleAI tool for generating rescript library documentation

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nobleai/rescript-documentation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    rescript-prelude

    NobleAI Opinionated Prelude for unification of Belt/Js and other antique core libraries.

    Style

    • Data First
    • Prefer arrows
    • Immutable implementations top level
    • Mutable implementations in module Mut
    • Spend the energy to give optionality/variant encoding when core returns primitive-encoded exceptional values, e.g. Array.indexOf
    • Prefer Promise over async
    • Trailing _ in function name variation of other function returning unit
    • Clearly identify reference/strict equality since we dont often have reference equality.