Skip to content

v1.0.1

Compare
Choose a tag to compare
@lukeed lukeed released this 25 Apr 06:20
· 39 commits to master since this release

Features

  • With the latest version of regexparam, Navaid can now support suffix matches

     // Examples from "regexparam"
    // All patterns are now valid within Navaid~!
    
     let now = regexparam('/movies/:title.(mp4|mov)');
    
     exec('/movies/narnia.mp4', now);
     //=> { title: 'narnia' }
    
     exec('/movies/narnia.mov', now);
     //=> { title: 'narnia' }
    
     exec('/movies/narnia.wav', now);
     //=> {}  (no match)

Patches

  • Ignore/Release links to different host targets (#3): b4561f9
  • Refactor: Ignore unnecessary looping inside $.run: f1291ad
  • Gold: Shave 7 bytes: 618cd53

Chores