详细使用教程链接:https://biga-ahk.github.io/biga.ahk/#/

 

简介

一个现代的不可变实用程序库,用于 AutoHotKey Mirrors 功能和Lodash

的方法名称;用 AutoHotkey 编写,具有零依赖性。alpha - API 可能会发生变化,并且在 v1.0.0 之前可能存在缺陷


安装

在终端或命令行中导航到您的项目文件夹:

npm install biga.ahk

在您的代码中,只需包含文件export.ahk:

#Include %A_ScriptDir%\node_modules
#Include biga.ahk\export.ahk
A := new biga()
msgbox, % A.join(["a", "b", "c"], " ")
; => "a b c"

您还可以从GitHub 上的 ./export.ahk查看或复制该包;#但是在手动下载库时通常会包含它。

需要 AutoHotkey v1.1.05 或更高版本

API启动

的实例并根据需要使用

A := new biga()
wordsArray := A.words("This could be real real useful")
; => ["This", "could", "be", "real, "real", "useful"]
msgbox, % wordsArray.Count()
; => 6
uniqWords := A.uniq(wordsArray)
; => ["This", "could", "be", "real", "useful"]
msgbox, % A.join(uniqWords, " ")
; => "This could be real useful"

更长的示例位于https://github.com/biga-ahk/biga.ahk/tree/master/examples

文档
入门:https://biga-ahk.github.io/biga.ahk/#getting-started
All工作方法记录在https://biga-ahk.github.io/biga.ahk

贡献请向https://github.com/biga-ahk/biga.ahk

中找到的源发出拉取请求

 

原贴链接:https://www.autohotkey.com/boards/viewtopic.php?f=6&t=68408

声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。