Function wrapper that only passes 1st argument to function
new GeneratorFunction ([arg1[, arg2[, ...argN]],] functionBody)
handle commands like as /command arg1 arg2
mx.event.on("event1",(arg1)=>{
Allows to parse: ~~~ {% tag arg1=1 arg2=2 %} ~~~
mx.event.on("event1",(arg1)=>{
add(arg1, arg2) // сложение sub(arg1, arg2) // вычитание mul(arg1, arg2) // умножение div(arg1, arg2) // деление
support loading .env files from folders and passing arguments to worker threads / scripts e.g. --arg1=value --arg2=value2
WordPress hooks library.
Flatten a function's argument. Like, really flatten
Essential utils for promises
```js var func = $(function (arg1, arg2) { // This code will be executed in the browser // ... return value; });
Msgpack-RPC(v5 spec) implementation
> Monorepo of isomorphic utility functions
Wrappers for built-in fetch() enabling killswitch, logging, concurrency limit and other features
JavaScript sprintf implementation
Run a node.js application as a window service using nssm.
Cross-platform support for running Windows executables
A feature-rich Node.js event emitter implementation with namespaces, wildcards, TTL, async listeners and browser/worker support.
Run a node.js application as a window service using nssm.
Library that helps with server-to-client synchronization of data
Model Context Protocol inspector
Service middleware for redux
Just a little module for plugins.
Provide tools to bind rust trait with other language and export library artifact directly. Invoke rust functions just like you write it in native language.
Rust task runner and build tool.
The Ion Shell
Define custom println and dbg macros in wasm and other targets
Proc macro to create boilerplate to simulate function with named arguments
Shared protocol definitions for uxntal://
Dynamically build Command objects with conditional expressions
Custom formatting for Rust.
Procedural macros for the custom-format crate.
Mini language for interactive consoles, featuring small code footprint.
Type-safe SQL templates with Askama and SQLx
arrrg provides a wrapper around the getops library for stable commandline parsing.
A small JRuby gem that spawns new processes using java.lang.ProcessBuilder
ParseTree is a C extension (using RubyInline) that extracts the parse tree for an entire class or a specific method and returns it as a s-expression (aka sexp) using ruby's arrays, strings, symbols, and integers. As an example: def conditional1(arg1) if arg1 == 0 then return 1 end return 0 end becomes: [:defn, :conditional1, [:scope, [:block, [:args, :arg1], [:if, [:call, [:lvar, :arg1], :==, [:array, [:lit, 0]]], [:return, [:lit, 1]], nil], [:return, [:lit, 0]]]]]
ruby_parser (RP) is a ruby parser written in pure ruby (utilizing racc--which does by default use a C extension). It outputs s-expressions which can be manipulated and converted back to ruby via the ruby2ruby gem. As an example: def conditional1 arg1 return 1 if arg1 == 0 return 0 end becomes: s(:defn, :conditional1, s(:args, :arg1), s(:if, s(:call, s(:lvar, :arg1), :==, s(:lit, 0)), s(:return, s(:lit, 1)), nil), s(:return, s(:lit, 0))) Tested against 801,039 files from the latest of all rubygems (as of 2013-05): * 1.8 parser is at 99.9739% accuracy, 3.651 sigma * 1.9 parser is at 99.9940% accuracy, 4.013 sigma * 2.0 parser is at 99.9939% accuracy, 4.008 sigma * 2.6 parser is at 99.9972% accuracy, 4.191 sigma * 3.0 parser has a 100% parse rate. * Tested against 2,672,412 unique ruby files across 167k gems. * As do all the others now, basically.
ruby_parser (RP) is a ruby parser written in pure ruby (utilizing racc--which does by default use a C extension). RP's output is the same as ParseTree's output: s-expressions using ruby's arrays and base types. As an example: def conditional1(arg1) if arg1 == 0 then return 1 end return 0 end becomes: s(:defn, :conditional1, s(:args, :arg1), s(:scope, s(:block, s(:if, s(:call, s(:lvar, :arg1), :==, s(:arglist, s(:lit, 0))), s(:return, s(:lit, 1)), nil), s(:return, s(:lit, 0)))))
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.