made with requirebin
Created
November 19, 2014 15:53
-
-
Save Granze/4b8ff96779404e6f0a7e to your computer and use it in GitHub Desktop.
requirebin sketch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fraktur = require('fraktur'); | |
console.log(fraktur("Fraktur is cool!")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require=function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}({1:[function(require,module,exports){module.exports={A:"๐",B:"๐ ",C:"๐ฎ",D:"๐",E:"๐",F:"๐",G:"๐",H:"๐ณ",I:"๐ด",J:"๐",K:"๐",L:"๐",M:"๐",N:"๐",O:"๐",P:"๐",Q:"๐",R:"๐ฝ",S:"๐",T:"๐",U:"๐",V:"๐",W:"๐",X:"๐",Y:"๐",Z:"๐ ",a:"๐",b:"๐",c:"๐ ",d:"๐ก",e:"๐ข",f:"๐ฃ",g:"๐ค",h:"๐ฅ",i:"๐ฆ",j:"๐ง",k:"๐จ",l:"๐ฉ",m:"๐ช",n:"๐ซ",o:"๐ฌ",p:"๐ญ",q:"๐ฎ",r:"๐ฏ",s:"๐ฐ",t:"๐ฑ",u:"๐ฒ",v:"๐ณ",w:"๐ด",x:"๐ต",y:"๐ถ",z:"๐ท"}},{}],fraktur:[function(require,module,exports){var data=require("./data.json");module.exports=function(str){return str.replace(/[A-Za-z]/g,function(s){return data[s]})}},{"./data.json":1}]},{},[]);var fraktur=require("fraktur");console.log(fraktur("Fraktur is cool!")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "requirebin-sketch", | |
"version": "1.0.0", | |
"dependencies": { | |
"fraktur": "1.0.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type='text/css'>html, body { margin: 0; padding: 0; border: 0; } | |
body, html { height: 100%; width: 100%; }</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment