Skip to content
View hagemann's full-sized avatar

Block or report hagemann

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

Pinned Loading

  1. Slugify makes a string URI-friendly Slugify makes a string URI-friendly
    1
    function slugify(string) {
    2
      const a = 'àáâäæãåāăąçćčđďèéêëēėęěğǵḧîïíīįìıİłḿñńǹňôöòóœøōõőṕŕřßśšşșťțûüùúūǘůűųẃẍÿýžźż·/_,:;'
    3
      const b = 'aaaaaaaaaacccddeeeeeeeegghiiiiiiiilmnnnnoooooooooprrsssssttuuuuuuuuuwxyyzzz------'
    4
      const p = new RegExp(a.split('').join('|'), 'g')
    5
    
                  
  2. Promisified MySQL middleware for Nod... Promisified MySQL middleware for Node.js
    1
    const util = require('util')
    2
    const mysql = require('mysql')
    3
    const pool = mysql.createPool({
    4
      connectionLimit: 10,
    5
      host: 'localhost',