Skip to content
View andrewbruner's full-sized avatar

Block or report andrewbruner

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
andrewbruner/README.md

Hello. I'm Andrew.

I'm a Front-end Web and JavaScript Developer.

Visit my blog at andrewbruner.dev

Contact me on Mastodon.

Pinned Loading

  1. andrewbruner.dev andrewbruner.dev Public

    Personal website of Andrew Bruner

    HTML 1

  2. Returns if ISBN-10 is valid Returns if ISBN-10 is valid
    1
    /**
    2
     * Returns if ISBN-10 is valid
    3
     *
    4
     * @param {string} isbn
    5
     * @returns {boolean}
  3. Returns if ISBN-13 is valid Returns if ISBN-13 is valid
    1
    /**
    2
     * Returns if ISBN-13 is valid
    3
     *
    4
     * @param {string} isbn
    5
     * @returns {boolean}
  4. My personal index.html file boilerplate My personal index.html file boilerplate
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
    	<meta charset="UTF-8" />
    5
    	<title></title>
  5. General guide for using the IndexedD... General guide for using the IndexedDB API
    1
    const request = indexedDb.open(name: string, ?version: number);
    2
    
                  
    3
    request.onupgradeneeded = () => {
    4
    	const database = request.result;
    5
    	const store = database.createObjectStore(name: string, ?options: { ?keyPath: string, ?autoIncrement: boolean });