UNPKG
stats-percentile
Version:
latest (3.3.0)
3.3.0
3.1.0
3.0.0
2.0.0
1.2.0
1.1.0
1.0.1
1.0.0
Calculate n-th percentile
github.com/msn0/stats-percentile
msn0/stats-percentile
stats-percentile
/
rollup.config.js
14 lines
(11 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{ babel }
from
'@rollup/plugin-babel'
;
const
config = {
input
:
'./index.js'
,
output
: {
name
:
'_stats_percentile'
,
dir
:
'dist'
,
format
:
'umd'
},
plugins
: [
babel
({
babelHelpers
:
'bundled'
}, {
useESModules
:
false
})] };
export
default
config;