UNPKG
r-d3
Version:
latest (0.6.0)
0.6.0
0.5.0
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
D3 data, React rendering.
github.com/ericgio/r-d3
ericgio/r-d3
r-d3
/
lib
/
utils
/
translate.js
9 lines
(8 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= translate;
function
translate
(
x, y
) {
return
"translate("
+ x +
", "
+ y +
")"
; }