poor_web 2025.5.15+1 copy "poor_web: ^2025.5.15+1" to clipboard
poor_web: ^2025.5.15+1 copied to clipboard

light web wrapper library.

2025.5.15 #

  • Add Wrapper types
    • type Fn
      final add = Fn.a2((Number a, Number b) => a + b);
      final result = add.call(Number(1), Number(2)); // 3
      
    • type Any
      Number add(Any a, Any b) => switch ((a.number, b.number)) {
        (Number a, Number b) => a + b,
        _ => Number(0),
      };
      
    • type Object
      final obj = Object();
      obj['key'] = String('value');
      
    • type Array
    • type Boolean
    • type Number
    • type String
    • type Promise

2025.5.8 #

  • Initial version.
0
likes
150
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

light web wrapper library.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

web

More

Packages that depend on poor_web