Skip to content

Instantly share code, notes, and snippets.

View iykekings's full-sized avatar
🦕
Contributing to Deno

Ikechukwu Eze iykekings

🦕
Contributing to Deno
View GitHub Profile
package main
import (
"flag"
"log"
"net/http"
"strings"
)
// FileSystem custom file system handler
@iykekings
iykekings / array_flattening.md
Last active December 17, 2019 16:26
Implementation of Array flattening with JavaScript

This gist discusses the implementation of Array flattening with JavaScript. It returns a single array with all of its element recursively flattened.

To Run Test

  node flat_array_test.js
@iykekings
iykekings / audit-on-push.yml
Created December 12, 2020 12:04 — forked from LukeMathWalker/audit.yml
GitHub Actions - Rust setup
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps: