@hackage hslua-module-text1.2.0

Lua module for text

hslua-module-text

GitHub CI Hackage Stackage Lts Stackage Nightly MIT license

An UTF-8 aware subset of Lua's string module. The functions provided by this module are upper, lower, len, reverse, sub, and toencoding.

Intended usage for this package is to preload it by adding the loader function to package.preload. Note that the Lua package library must have already been loaded before the loader can be added.

Example

loadProg :: Lua Status
loadProg = do
  openlibs
  preloadModule documenteModule
  dostring $ "text = require 'text'\n"
          <> "print(text.upper 'hello')"

License

This package is licensed under the MIT license. See LICENSE for details.