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
{ | |
"AP": "Andhra Pradesh", | |
"AR": "Arunachal Pradesh", | |
"AS": "Assam", | |
"BR": "Bihar", | |
"CT": "Chhattisgarh", | |
"GA": "Goa", | |
"GJ": "Gujarat", | |
"HR": "Haryana", | |
"HP": "Himachal Pradesh", |
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
<div class="container"> | |
<form> | |
<input type="text" placeholder="Enter Text"> | |
<div class="hint"> | |
<i class="hint-icon">i</i> | |
<p class="hint-description">Awesome hint</p> | |
</div> | |
</form> | |
</div> |
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
setEvents(var event,x,y) | |
{ | |
de[0].triggerEventHandler(event,{pageX:x,pageY:y}); | |
} | |
EventEmit(var event,x,y,expectx,expecty) | |
{ | |
setEvents(event,x,y); | |
expect(expectx,expecty); |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.axis path, .axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
path.line { | |
fill: none; |
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
let fs = require("fs"); | |
fs.readFile("preload-dist.r", function (err, data) { | |
if (err) throw err; | |
console.log(data); | |
console.log(data.length); | |
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.