aureooms/js-sll

View on GitHub
src/utils/iter.js

Summary

Maintainability
A
0 mins
Test Coverage

export function* iter ( head ) {

    while ( head !== null ) {

        yield head.value ;
        head = head.next ;

    }

}