Ryan X. Charles
11 years ago
6 changed files with 11 additions and 11 deletions
@ -1,5 +1,5 @@ |
|||||
if (process.versions) { |
if (process.versions) { |
||||
module.exports = require('./Key.node'); |
module.exports = require('./node/Key'); |
||||
return; |
return; |
||||
} |
} |
||||
module.exports = require('./Key.browser'); |
module.exports = require('./browser/Key'); |
||||
|
@ -1,5 +1,5 @@ |
|||||
if (process.versions) { |
if (process.versions) { |
||||
module.exports = require('./Point.node'); |
module.exports = require('./node/Point'); |
||||
return; |
return; |
||||
} |
} |
||||
module.exports = require('./Point.browser'); |
module.exports = require('./browser/Point'); |
||||
|
@ -1,4 +1,4 @@ |
|||||
var ECKey = require('../browser/vendor-bundle.js').ECKey; |
var ECKey = require('../../browser/vendor-bundle.js').ECKey; |
||||
var buffertools = require('buffertools'); |
var buffertools = require('buffertools'); |
||||
|
|
||||
var Key = function() { |
var Key = function() { |
@ -1,7 +1,7 @@ |
|||||
"use strict"; |
"use strict"; |
||||
|
|
||||
var imports = require('soop').imports(); |
var imports = require('soop').imports(); |
||||
var Key = imports.Key || require('./Key'); |
var Key = imports.Key || require('../Key'); |
||||
var bignum = imports.bignum || require('bignum'); |
var bignum = imports.bignum || require('bignum'); |
||||
var assert = require('assert'); |
var assert = require('assert'); |
||||
|
|
Loading…
Reference in new issue